google-apis-bigquerydatatransfer_v1 0.46.0 → 0.48.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/bigquerydatatransfer_v1/classes.rb +6 -0
 - data/lib/google/apis/bigquerydatatransfer_v1/gem_version.rb +2 -2
 - data/lib/google/apis/bigquerydatatransfer_v1/representations.rb +1 -0
 - data/lib/google/apis/bigquerydatatransfer_v1/service.rb +2 -2
 - 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: bd365b500e1bedda88d6d628304db6f081581001ba57bfd162d4c73d3a574123
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 244442d5e41745ebac351267065bfab994185efe392610ff3caa45439039e26b
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: '0739aea0b6a8ac34bf9a0adccf3e034b21dc29e2dd7d6f03ed492394d3d1c9e6a459d3dc12675e8b27d69e6f06344eba8c7872395f5388bed7b82ef198423bd7'
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: aeeb284d839cc3e190bd4eeab2307f26de2ca9204840916274819374bf4f3874f66cd040474225c45b3bb7c236a9a8293778de8a53b9c379cbe55ff738a361db
         
     | 
    
        data/CHANGELOG.md
    CHANGED
    
    | 
         @@ -1,5 +1,13 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            # Release history for google-apis-bigquerydatatransfer_v1
         
     | 
| 
       2 
2 
     | 
    
         | 
| 
      
 3 
     | 
    
         
            +
            ### v0.48.0 (2025-10-26)
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            * Regenerated from discovery document revision 20251020
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
            ### v0.47.0 (2025-09-14)
         
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
            * Regenerated from discovery document revision 20250906
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
       3 
11 
     | 
    
         
             
            ### v0.46.0 (2025-08-24)
         
     | 
| 
       4 
12 
     | 
    
         | 
| 
       5 
13 
     | 
    
         
             
            * Regenerated from discovery document revision 20250813
         
     | 
| 
         @@ -956,6 +956,11 @@ module Google 
     | 
|
| 
       956 
956 
     | 
    
         
             
                    # @return [Google::Apis::BigquerydatatransferV1::Status]
         
     | 
| 
       957 
957 
     | 
    
         
             
                    attr_accessor :error
         
     | 
| 
       958 
958 
     | 
    
         | 
| 
      
 959 
     | 
    
         
            +
                    # The classification of the destination table.
         
     | 
| 
      
 960 
     | 
    
         
            +
                    # Corresponds to the JSON property `managedTableType`
         
     | 
| 
      
 961 
     | 
    
         
            +
                    # @return [String]
         
     | 
| 
      
 962 
     | 
    
         
            +
                    attr_accessor :managed_table_type
         
     | 
| 
      
 963 
     | 
    
         
            +
                  
         
     | 
| 
       959 
964 
     | 
    
         
             
                    # Identifier. The resource name of the transfer config. Transfer config names
         
     | 
| 
       960 
965 
     | 
    
         
             
                    # have the form either `projects/`project_id`/locations/`region`/transferConfigs/
         
     | 
| 
       961 
966 
     | 
    
         
             
                    # `config_id`` or `projects/`project_id`/transferConfigs/`config_id``, where `
         
     | 
| 
         @@ -1046,6 +1051,7 @@ module Google 
     | 
|
| 
       1046 
1051 
     | 
    
         
             
                      @email_preferences = args[:email_preferences] if args.key?(:email_preferences)
         
     | 
| 
       1047 
1052 
     | 
    
         
             
                      @encryption_configuration = args[:encryption_configuration] if args.key?(:encryption_configuration)
         
     | 
| 
       1048 
1053 
     | 
    
         
             
                      @error = args[:error] if args.key?(:error)
         
     | 
| 
      
 1054 
     | 
    
         
            +
                      @managed_table_type = args[:managed_table_type] if args.key?(:managed_table_type)
         
     | 
| 
       1049 
1055 
     | 
    
         
             
                      @name = args[:name] if args.key?(:name)
         
     | 
| 
       1050 
1056 
     | 
    
         
             
                      @next_run_time = args[:next_run_time] if args.key?(:next_run_time)
         
     | 
| 
       1051 
1057 
     | 
    
         
             
                      @notification_pubsub_topic = args[:notification_pubsub_topic] if args.key?(:notification_pubsub_topic)
         
     | 
| 
         @@ -16,13 +16,13 @@ module Google 
     | 
|
| 
       16 
16 
     | 
    
         
             
              module Apis
         
     | 
| 
       17 
17 
     | 
    
         
             
                module BigquerydatatransferV1
         
     | 
| 
       18 
18 
     | 
    
         
             
                  # Version of the google-apis-bigquerydatatransfer_v1 gem
         
     | 
| 
       19 
     | 
    
         
            -
                  GEM_VERSION = "0. 
     | 
| 
      
 19 
     | 
    
         
            +
                  GEM_VERSION = "0.48.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 = "20251020"
         
     | 
| 
       26 
26 
     | 
    
         
             
                end
         
     | 
| 
       27 
27 
     | 
    
         
             
              end
         
     | 
| 
       28 
28 
     | 
    
         
             
            end
         
     | 
| 
         @@ -455,6 +455,7 @@ module Google 
     | 
|
| 
       455 
455 
     | 
    
         | 
| 
       456 
456 
     | 
    
         
             
                      property :error, as: 'error', class: Google::Apis::BigquerydatatransferV1::Status, decorator: Google::Apis::BigquerydatatransferV1::Status::Representation
         
     | 
| 
       457 
457 
     | 
    
         | 
| 
      
 458 
     | 
    
         
            +
                      property :managed_table_type, as: 'managedTableType'
         
     | 
| 
       458 
459 
     | 
    
         
             
                      property :name, as: 'name'
         
     | 
| 
       459 
460 
     | 
    
         
             
                      property :next_run_time, as: 'nextRunTime'
         
     | 
| 
       460 
461 
     | 
    
         
             
                      property :notification_pubsub_topic, as: 'notificationPubsubTopic'
         
     | 
| 
         @@ -277,8 +277,8 @@ module Google 
     | 
|
| 
       277 
277 
     | 
    
         
             
                    # @param [String] name
         
     | 
| 
       278 
278 
     | 
    
         
             
                    #   The resource that owns the locations collection, if applicable.
         
     | 
| 
       279 
279 
     | 
    
         
             
                    # @param [Array<String>, String] extra_location_types
         
     | 
| 
       280 
     | 
    
         
            -
                    #   Optional.  
     | 
| 
       281 
     | 
    
         
            -
                    #    
     | 
| 
      
 280 
     | 
    
         
            +
                    #   Optional. Unless explicitly documented otherwise, don't use this unsupported
         
     | 
| 
      
 281 
     | 
    
         
            +
                    #   field which is primarily intended for internal usage.
         
     | 
| 
       282 
282 
     | 
    
         
             
                    # @param [String] filter
         
     | 
| 
       283 
283 
     | 
    
         
             
                    #   A filter to narrow down results to a preferred subset. The filtering language
         
     | 
| 
       284 
284 
     | 
    
         
             
                    #   accepts strings like `"displayName=tokyo"`, and is documented in more detail
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: google-apis-bigquerydatatransfer_v1
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 0. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.48.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-bigquerydatatransfer_v1/CHANGELOG.md
         
     | 
| 
       60 
     | 
    
         
            -
              documentation_uri: https://googleapis.dev/ruby/google-apis-bigquerydatatransfer_v1/v0. 
     | 
| 
      
 60 
     | 
    
         
            +
              documentation_uri: https://googleapis.dev/ruby/google-apis-bigquerydatatransfer_v1/v0.48.0
         
     | 
| 
       61 
61 
     | 
    
         
             
              source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-bigquerydatatransfer_v1
         
     | 
| 
       62 
62 
     | 
    
         
             
            rdoc_options: []
         
     | 
| 
       63 
63 
     | 
    
         
             
            require_paths:
         
     |