google-apis-storage_v1 0.30.0 → 0.32.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
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: '082994552478f30980e6c10d42adc7e06440c990e7c64f9178a5d47962e4498e'
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: ba0979be68147b00908232118012fce6cdf20a4c2a6a25c4c42e47f6b1ee5bfd
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: cb0343be2838ce35223834668e967a0bcbe901895f2560a2023eb8ec3e0f4f4c2bb4d7b4527ef50932be37011a2659126615cdcc8c25882987d17c34671cf6c0
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: cd78298b11dde8312e695016b15b992b396494d6fdf5d696ef0ca47bfc31d47074aa19348a295ba505575d4b0d458b15f362685e349416347f7519e04c96a560
         
     | 
    
        data/CHANGELOG.md
    CHANGED
    
    | 
         @@ -1,5 +1,13 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            # Release history for google-apis-storage_v1
         
     | 
| 
       2 
2 
     | 
    
         | 
| 
      
 3 
     | 
    
         
            +
            ### v0.32.0 (2023-12-24)
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            * Regenerated from discovery document revision 20231218
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
            ### v0.31.0 (2023-12-03)
         
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
            * Regenerated from discovery document revision 20231117
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
       3 
11 
     | 
    
         
             
            ### v0.30.0 (2023-11-05)
         
     | 
| 
       4 
12 
     | 
    
         | 
| 
       5 
13 
     | 
    
         
             
            * Regenerated from discovery document revision 20231028
         
     | 
| 
         @@ -84,6 +84,11 @@ module Google 
     | 
|
| 
       84 
84 
     | 
    
         
             
                    # @return [DateTime]
         
     | 
| 
       85 
85 
     | 
    
         
             
                    attr_accessor :update_time
         
     | 
| 
       86 
86 
     | 
    
         | 
| 
      
 87 
     | 
    
         
            +
                    # The zone in which the cache instance is running. For example, us-central1-a.
         
     | 
| 
      
 88 
     | 
    
         
            +
                    # Corresponds to the JSON property `zone`
         
     | 
| 
      
 89 
     | 
    
         
            +
                    # @return [String]
         
     | 
| 
      
 90 
     | 
    
         
            +
                    attr_accessor :zone
         
     | 
| 
      
 91 
     | 
    
         
            +
                  
         
     | 
| 
       87 
92 
     | 
    
         
             
                    def initialize(**args)
         
     | 
| 
       88 
93 
     | 
    
         
             
                       update!(**args)
         
     | 
| 
       89 
94 
     | 
    
         
             
                    end
         
     | 
| 
         @@ -101,6 +106,7 @@ module Google 
     | 
|
| 
       101 
106 
     | 
    
         
             
                      @state = args[:state] if args.key?(:state)
         
     | 
| 
       102 
107 
     | 
    
         
             
                      @ttl = args[:ttl] if args.key?(:ttl)
         
     | 
| 
       103 
108 
     | 
    
         
             
                      @update_time = args[:update_time] if args.key?(:update_time)
         
     | 
| 
      
 109 
     | 
    
         
            +
                      @zone = args[:zone] if args.key?(:zone)
         
     | 
| 
       104 
110 
     | 
    
         
             
                    end
         
     | 
| 
       105 
111 
     | 
    
         
             
                  end
         
     | 
| 
       106 
112 
     | 
    
         | 
| 
         @@ -16,13 +16,13 @@ module Google 
     | 
|
| 
       16 
16 
     | 
    
         
             
              module Apis
         
     | 
| 
       17 
17 
     | 
    
         
             
                module StorageV1
         
     | 
| 
       18 
18 
     | 
    
         
             
                  # Version of the google-apis-storage_v1 gem
         
     | 
| 
       19 
     | 
    
         
            -
                  GEM_VERSION = "0. 
     | 
| 
      
 19 
     | 
    
         
            +
                  GEM_VERSION = "0.32.0"
         
     | 
| 
       20 
20 
     | 
    
         | 
| 
       21 
21 
     | 
    
         
             
                  # Version of the code generator used to generate this client
         
     | 
| 
       22 
22 
     | 
    
         
             
                  GENERATOR_VERSION = "0.12.0"
         
     | 
| 
       23 
23 
     | 
    
         | 
| 
       24 
24 
     | 
    
         
             
                  # Revision of the discovery document this client was generated from
         
     | 
| 
       25 
     | 
    
         
            -
                  REVISION = " 
     | 
| 
      
 25 
     | 
    
         
            +
                  REVISION = "20231218"
         
     | 
| 
       26 
26 
     | 
    
         
             
                end
         
     | 
| 
       27 
27 
     | 
    
         
             
              end
         
     | 
| 
       28 
28 
     | 
    
         
             
            end
         
     | 
| 
         @@ -55,7 +55,7 @@ module Google 
     | 
|
| 
       55 
55 
     | 
    
         | 
| 
       56 
56 
     | 
    
         
             
                    # Disables an Anywhere Cache instance.
         
     | 
| 
       57 
57 
     | 
    
         
             
                    # @param [String] bucket
         
     | 
| 
       58 
     | 
    
         
            -
                    #   Name of the  
     | 
| 
      
 58 
     | 
    
         
            +
                    #   Name of the parent bucket.
         
     | 
| 
       59 
59 
     | 
    
         
             
                    # @param [String] anywhere_cache_id
         
     | 
| 
       60 
60 
     | 
    
         
             
                    #   The ID of requested Anywhere Cache instance.
         
     | 
| 
       61 
61 
     | 
    
         
             
                    # @param [String] fields
         
     | 
| 
         @@ -91,7 +91,7 @@ module Google 
     | 
|
| 
       91 
91 
     | 
    
         | 
| 
       92 
92 
     | 
    
         
             
                    # Returns the metadata of an Anywhere Cache instance.
         
     | 
| 
       93 
93 
     | 
    
         
             
                    # @param [String] bucket
         
     | 
| 
       94 
     | 
    
         
            -
                    #   Name of the  
     | 
| 
      
 94 
     | 
    
         
            +
                    #   Name of the parent bucket.
         
     | 
| 
       95 
95 
     | 
    
         
             
                    # @param [String] anywhere_cache_id
         
     | 
| 
       96 
96 
     | 
    
         
             
                    #   The ID of requested Anywhere Cache instance.
         
     | 
| 
       97 
97 
     | 
    
         
             
                    # @param [String] fields
         
     | 
| 
         @@ -127,7 +127,7 @@ module Google 
     | 
|
| 
       127 
127 
     | 
    
         | 
| 
       128 
128 
     | 
    
         
             
                    # Creates an Anywhere Cache instance.
         
     | 
| 
       129 
129 
     | 
    
         
             
                    # @param [String] bucket
         
     | 
| 
       130 
     | 
    
         
            -
                    #   Name of the  
     | 
| 
      
 130 
     | 
    
         
            +
                    #   Name of the parent bucket.
         
     | 
| 
       131 
131 
     | 
    
         
             
                    # @param [Google::Apis::StorageV1::AnywhereCache] anywhere_cache_object
         
     | 
| 
       132 
132 
     | 
    
         
             
                    # @param [String] fields
         
     | 
| 
       133 
133 
     | 
    
         
             
                    #   Selector specifying which fields to include in a partial response.
         
     | 
| 
         @@ -163,7 +163,7 @@ module Google 
     | 
|
| 
       163 
163 
     | 
    
         | 
| 
       164 
164 
     | 
    
         
             
                    # Returns a list of Anywhere Cache instances of the bucket matching the criteria.
         
     | 
| 
       165 
165 
     | 
    
         
             
                    # @param [String] bucket
         
     | 
| 
       166 
     | 
    
         
            -
                    #   Name of the  
     | 
| 
      
 166 
     | 
    
         
            +
                    #   Name of the parent bucket.
         
     | 
| 
       167 
167 
     | 
    
         
             
                    # @param [Fixnum] page_size
         
     | 
| 
       168 
168 
     | 
    
         
             
                    #   Maximum number of items return in a single page of responses. Maximum 1000.
         
     | 
| 
       169 
169 
     | 
    
         
             
                    # @param [String] page_token
         
     | 
| 
         @@ -189,7 +189,7 @@ module Google 
     | 
|
| 
       189 
189 
     | 
    
         
             
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         
     | 
| 
       190 
190 
     | 
    
         
             
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         
     | 
| 
       191 
191 
     | 
    
         
             
                    def list_anywhere_caches(bucket, page_size: nil, page_token: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         
     | 
| 
       192 
     | 
    
         
            -
                      command = make_simple_command(:get, 'b/{bucket}/ 
     | 
| 
      
 192 
     | 
    
         
            +
                      command = make_simple_command(:get, 'b/{bucket}/anywhereCaches', options)
         
     | 
| 
       193 
193 
     | 
    
         
             
                      command.response_representation = Google::Apis::StorageV1::AnywhereCaches::Representation
         
     | 
| 
       194 
194 
     | 
    
         
             
                      command.response_class = Google::Apis::StorageV1::AnywhereCaches
         
     | 
| 
       195 
195 
     | 
    
         
             
                      command.params['bucket'] = bucket unless bucket.nil?
         
     | 
| 
         @@ -203,7 +203,7 @@ module Google 
     | 
|
| 
       203 
203 
     | 
    
         | 
| 
       204 
204 
     | 
    
         
             
                    # Pauses an Anywhere Cache instance.
         
     | 
| 
       205 
205 
     | 
    
         
             
                    # @param [String] bucket
         
     | 
| 
       206 
     | 
    
         
            -
                    #   Name of the  
     | 
| 
      
 206 
     | 
    
         
            +
                    #   Name of the parent bucket.
         
     | 
| 
       207 
207 
     | 
    
         
             
                    # @param [String] anywhere_cache_id
         
     | 
| 
       208 
208 
     | 
    
         
             
                    #   The ID of requested Anywhere Cache instance.
         
     | 
| 
       209 
209 
     | 
    
         
             
                    # @param [String] fields
         
     | 
| 
         @@ -239,7 +239,7 @@ module Google 
     | 
|
| 
       239 
239 
     | 
    
         | 
| 
       240 
240 
     | 
    
         
             
                    # Resumes a paused or disabled Anywhere Cache instance.
         
     | 
| 
       241 
241 
     | 
    
         
             
                    # @param [String] bucket
         
     | 
| 
       242 
     | 
    
         
            -
                    #   Name of the  
     | 
| 
      
 242 
     | 
    
         
            +
                    #   Name of the parent bucket.
         
     | 
| 
       243 
243 
     | 
    
         
             
                    # @param [String] anywhere_cache_id
         
     | 
| 
       244 
244 
     | 
    
         
             
                    #   The ID of requested Anywhere Cache instance.
         
     | 
| 
       245 
245 
     | 
    
         
             
                    # @param [String] fields
         
     | 
| 
         @@ -275,7 +275,7 @@ module Google 
     | 
|
| 
       275 
275 
     | 
    
         | 
| 
       276 
276 
     | 
    
         
             
                    # Updates the config(ttl and admissionPolicy) of an Anywhere Cache instance.
         
     | 
| 
       277 
277 
     | 
    
         
             
                    # @param [String] bucket
         
     | 
| 
       278 
     | 
    
         
            -
                    #   Name of the  
     | 
| 
      
 278 
     | 
    
         
            +
                    #   Name of the parent bucket.
         
     | 
| 
       279 
279 
     | 
    
         
             
                    # @param [String] anywhere_cache_id
         
     | 
| 
       280 
280 
     | 
    
         
             
                    #   The ID of requested Anywhere Cache instance.
         
     | 
| 
       281 
281 
     | 
    
         
             
                    # @param [Google::Apis::StorageV1::AnywhereCache] anywhere_cache_object
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,14 +1,14 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: google-apis-storage_v1
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 0. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.32.0
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Google LLC
         
     | 
| 
       8 
8 
     | 
    
         
             
            autorequire: 
         
     | 
| 
       9 
9 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       10 
10 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
     | 
    
         
            -
            date: 2023- 
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2023-12-24 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
14 
     | 
    
         
             
              name: google-apis-core
         
     | 
| 
         @@ -58,7 +58,7 @@ licenses: 
     | 
|
| 
       58 
58 
     | 
    
         
             
            metadata:
         
     | 
| 
       59 
59 
     | 
    
         
             
              bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
         
     | 
| 
       60 
60 
     | 
    
         
             
              changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-storage_v1/CHANGELOG.md
         
     | 
| 
       61 
     | 
    
         
            -
              documentation_uri: https://googleapis.dev/ruby/google-apis-storage_v1/v0. 
     | 
| 
      
 61 
     | 
    
         
            +
              documentation_uri: https://googleapis.dev/ruby/google-apis-storage_v1/v0.32.0
         
     | 
| 
       62 
62 
     | 
    
         
             
              source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-storage_v1
         
     | 
| 
       63 
63 
     | 
    
         
             
            post_install_message: 
         
     | 
| 
       64 
64 
     | 
    
         
             
            rdoc_options: []
         
     |