google-apis-migrationcenter_v1 0.25.0 → 0.27.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 +8 -0
 - data/lib/google/apis/migrationcenter_v1/classes.rb +8 -0
 - data/lib/google/apis/migrationcenter_v1/gem_version.rb +2 -2
 - data/lib/google/apis/migrationcenter_v1/representations.rb +1 -0
 - data/lib/google/apis/migrationcenter_v1/service.rb +11 -3
 - metadata +2 -2
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 9179483f9fc194b47fb08a6cdf3050faf085faa7b79504d792898e826bf65656
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 951b6d6a9729f13b6a8fa5f28e6e55f448f30a48c2af85864ce211175139bf65
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: d7f2761e5b03f738f907ca8789b57fffd876db3276ba377f68e84da3de824fdfcd57afeaf90dc4b2c9de4aaf11291f538c3353402cb612d040ec3efa6c6fa681
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: b37d35b100ce6b256c5d91ac6f5454fb6c0c0f8d0a6e6ad37a42956be0c0af55bf68846e8ae98511226d4689ed4dd202785aa618f52808739fbaf28a44be3e7c
         
     | 
    
        data/CHANGELOG.md
    CHANGED
    
    | 
         @@ -1,5 +1,13 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            # Release history for google-apis-migrationcenter_v1
         
     | 
| 
       2 
2 
     | 
    
         | 
| 
      
 3 
     | 
    
         
            +
            ### v0.27.0 (2025-10-26)
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            * Regenerated from discovery document revision 20251023
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
            ### v0.26.0 (2025-10-05)
         
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
            * Regenerated from discovery document revision 20250928
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
       3 
11 
     | 
    
         
             
            ### v0.25.0 (2025-09-14)
         
     | 
| 
       4 
12 
     | 
    
         | 
| 
       5 
13 
     | 
    
         
             
            * Regenerated from discovery document revision 20250904
         
     | 
| 
         @@ -3102,6 +3102,13 @@ module Google 
     | 
|
| 
       3102 
3102 
     | 
    
         
             
                    # @return [Array<Google::Apis::MigrationcenterV1::Operation>]
         
     | 
| 
       3103 
3103 
     | 
    
         
             
                    attr_accessor :operations
         
     | 
| 
       3104 
3104 
     | 
    
         | 
| 
      
 3105 
     | 
    
         
            +
                    # Unordered list. Unreachable resources. Populated when the request sets `
         
     | 
| 
      
 3106 
     | 
    
         
            +
                    # ListOperationsRequest.return_partial_success` and reads across collections e.g.
         
     | 
| 
      
 3107 
     | 
    
         
            +
                    # when attempting to list all resources across all supported locations.
         
     | 
| 
      
 3108 
     | 
    
         
            +
                    # Corresponds to the JSON property `unreachable`
         
     | 
| 
      
 3109 
     | 
    
         
            +
                    # @return [Array<String>]
         
     | 
| 
      
 3110 
     | 
    
         
            +
                    attr_accessor :unreachable
         
     | 
| 
      
 3111 
     | 
    
         
            +
                  
         
     | 
| 
       3105 
3112 
     | 
    
         
             
                    def initialize(**args)
         
     | 
| 
       3106 
3113 
     | 
    
         
             
                       update!(**args)
         
     | 
| 
       3107 
3114 
     | 
    
         
             
                    end
         
     | 
| 
         @@ -3110,6 +3117,7 @@ module Google 
     | 
|
| 
       3110 
3117 
     | 
    
         
             
                    def update!(**args)
         
     | 
| 
       3111 
3118 
     | 
    
         
             
                      @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
         
     | 
| 
       3112 
3119 
     | 
    
         
             
                      @operations = args[:operations] if args.key?(:operations)
         
     | 
| 
      
 3120 
     | 
    
         
            +
                      @unreachable = args[:unreachable] if args.key?(:unreachable)
         
     | 
| 
       3113 
3121 
     | 
    
         
             
                    end
         
     | 
| 
       3114 
3122 
     | 
    
         
             
                  end
         
     | 
| 
       3115 
3123 
     | 
    
         | 
| 
         @@ -16,13 +16,13 @@ module Google 
     | 
|
| 
       16 
16 
     | 
    
         
             
              module Apis
         
     | 
| 
       17 
17 
     | 
    
         
             
                module MigrationcenterV1
         
     | 
| 
       18 
18 
     | 
    
         
             
                  # Version of the google-apis-migrationcenter_v1 gem
         
     | 
| 
       19 
     | 
    
         
            -
                  GEM_VERSION = "0. 
     | 
| 
      
 19 
     | 
    
         
            +
                  GEM_VERSION = "0.27.0"
         
     | 
| 
       20 
20 
     | 
    
         | 
| 
       21 
21 
     | 
    
         
             
                  # Version of the code generator used to generate this client
         
     | 
| 
       22 
22 
     | 
    
         
             
                  GENERATOR_VERSION = "0.18.0"
         
     | 
| 
       23 
23 
     | 
    
         | 
| 
       24 
24 
     | 
    
         
             
                  # Revision of the discovery document this client was generated from
         
     | 
| 
       25 
     | 
    
         
            -
                  REVISION = " 
     | 
| 
      
 25 
     | 
    
         
            +
                  REVISION = "20251023"
         
     | 
| 
       26 
26 
     | 
    
         
             
                end
         
     | 
| 
       27 
27 
     | 
    
         
             
              end
         
     | 
| 
       28 
28 
     | 
    
         
             
            end
         
     | 
| 
         @@ -2069,6 +2069,7 @@ module Google 
     | 
|
| 
       2069 
2069 
     | 
    
         
             
                      property :next_page_token, as: 'nextPageToken'
         
     | 
| 
       2070 
2070 
     | 
    
         
             
                      collection :operations, as: 'operations', class: Google::Apis::MigrationcenterV1::Operation, decorator: Google::Apis::MigrationcenterV1::Operation::Representation
         
     | 
| 
       2071 
2071 
     | 
    
         | 
| 
      
 2072 
     | 
    
         
            +
                      collection :unreachable, as: 'unreachable'
         
     | 
| 
       2072 
2073 
     | 
    
         
             
                    end
         
     | 
| 
       2073 
2074 
     | 
    
         
             
                  end
         
     | 
| 
       2074 
2075 
     | 
    
         | 
| 
         @@ -116,8 +116,8 @@ module Google 
     | 
|
| 
       116 
116 
     | 
    
         
             
                    # @param [String] name
         
     | 
| 
       117 
117 
     | 
    
         
             
                    #   The resource that owns the locations collection, if applicable.
         
     | 
| 
       118 
118 
     | 
    
         
             
                    # @param [Array<String>, String] extra_location_types
         
     | 
| 
       119 
     | 
    
         
            -
                    #   Optional.  
     | 
| 
       120 
     | 
    
         
            -
                    #    
     | 
| 
      
 119 
     | 
    
         
            +
                    #   Optional. Do not use this field. It is unsupported and is ignored unless
         
     | 
| 
      
 120 
     | 
    
         
            +
                    #   explicitly documented otherwise. This is primarily for internal usage.
         
     | 
| 
       121 
121 
     | 
    
         
             
                    # @param [String] filter
         
     | 
| 
       122 
122 
     | 
    
         
             
                    #   A filter to narrow down results to a preferred subset. The filtering language
         
     | 
| 
       123 
123 
     | 
    
         
             
                    #   accepts strings like `"displayName=tokyo"`, and is documented in more detail
         
     | 
| 
         @@ -1637,6 +1637,13 @@ module Google 
     | 
|
| 
       1637 
1637 
     | 
    
         
             
                    #   The standard list page size.
         
     | 
| 
       1638 
1638 
     | 
    
         
             
                    # @param [String] page_token
         
     | 
| 
       1639 
1639 
     | 
    
         
             
                    #   The standard list page token.
         
     | 
| 
      
 1640 
     | 
    
         
            +
                    # @param [Boolean] return_partial_success
         
     | 
| 
      
 1641 
     | 
    
         
            +
                    #   When set to `true`, operations that are reachable are returned as normal, and
         
     | 
| 
      
 1642 
     | 
    
         
            +
                    #   those that are unreachable are returned in the [ListOperationsResponse.
         
     | 
| 
      
 1643 
     | 
    
         
            +
                    #   unreachable] field. This can only be `true` when reading across collections e.
         
     | 
| 
      
 1644 
     | 
    
         
            +
                    #   g. when `parent` is set to `"projects/example/locations/-"`. This field is not
         
     | 
| 
      
 1645 
     | 
    
         
            +
                    #   by default supported and will result in an `UNIMPLEMENTED` error if set unless
         
     | 
| 
      
 1646 
     | 
    
         
            +
                    #   explicitly documented otherwise in service or product specific documentation.
         
     | 
| 
       1640 
1647 
     | 
    
         
             
                    # @param [String] fields
         
     | 
| 
       1641 
1648 
     | 
    
         
             
                    #   Selector specifying which fields to include in a partial response.
         
     | 
| 
       1642 
1649 
     | 
    
         
             
                    # @param [String] quota_user
         
     | 
| 
         @@ -1654,7 +1661,7 @@ module Google 
     | 
|
| 
       1654 
1661 
     | 
    
         
             
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         
     | 
| 
       1655 
1662 
     | 
    
         
             
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         
     | 
| 
       1656 
1663 
     | 
    
         
             
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         
     | 
| 
       1657 
     | 
    
         
            -
                    def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
         
     | 
| 
      
 1664 
     | 
    
         
            +
                    def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
         
     | 
| 
       1658 
1665 
     | 
    
         
             
                      command = make_simple_command(:get, 'v1/{+name}/operations', options)
         
     | 
| 
       1659 
1666 
     | 
    
         
             
                      command.response_representation = Google::Apis::MigrationcenterV1::ListOperationsResponse::Representation
         
     | 
| 
       1660 
1667 
     | 
    
         
             
                      command.response_class = Google::Apis::MigrationcenterV1::ListOperationsResponse
         
     | 
| 
         @@ -1662,6 +1669,7 @@ module Google 
     | 
|
| 
       1662 
1669 
     | 
    
         
             
                      command.query['filter'] = filter unless filter.nil?
         
     | 
| 
       1663 
1670 
     | 
    
         
             
                      command.query['pageSize'] = page_size unless page_size.nil?
         
     | 
| 
       1664 
1671 
     | 
    
         
             
                      command.query['pageToken'] = page_token unless page_token.nil?
         
     | 
| 
      
 1672 
     | 
    
         
            +
                      command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
         
     | 
| 
       1665 
1673 
     | 
    
         
             
                      command.query['fields'] = fields unless fields.nil?
         
     | 
| 
       1666 
1674 
     | 
    
         
             
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         
     | 
| 
       1667 
1675 
     | 
    
         
             
                      execute_or_queue_command(command, &block)
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: google-apis-migrationcenter_v1
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 0. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.27.0
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Google LLC
         
     | 
| 
         @@ -57,7 +57,7 @@ licenses: 
     | 
|
| 
       57 
57 
     | 
    
         
             
            metadata:
         
     | 
| 
       58 
58 
     | 
    
         
             
              bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
         
     | 
| 
       59 
59 
     | 
    
         
             
              changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-migrationcenter_v1/CHANGELOG.md
         
     | 
| 
       60 
     | 
    
         
            -
              documentation_uri: https://googleapis.dev/ruby/google-apis-migrationcenter_v1/v0. 
     | 
| 
      
 60 
     | 
    
         
            +
              documentation_uri: https://googleapis.dev/ruby/google-apis-migrationcenter_v1/v0.27.0
         
     | 
| 
       61 
61 
     | 
    
         
             
              source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-migrationcenter_v1
         
     | 
| 
       62 
62 
     | 
    
         
             
            rdoc_options: []
         
     | 
| 
       63 
63 
     | 
    
         
             
            require_paths:
         
     |