google-apis-cloudfunctions_v2alpha 0.34.0 → 0.35.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: d5cbf1386934b713f853801c0424391fff2cf1351d8d2a0e95f64dd413c8af77
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: a73f38d66d97a9661196da2c8e3edde2f9b14f4173fb2c686d1d9b68f55f6399
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 650f796a804fa56a929a06c034bb1c8842ed91a88da75fb058c97828267da99140038cade0594abbbbca035f25100d96a374f3a3b07b4d3749d19098fd97117d
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: bea2714af4a30ae15438e314e216ae54666372c7c4eb35737d0d4c8115c7e2d9273b62fd4e5a7662991546566fb2ad5da6e5f5fdcfbe622e0c4b06037f96ceed
         
     | 
    
        data/CHANGELOG.md
    CHANGED
    
    
| 
         @@ -272,6 +272,47 @@ module Google 
     | 
|
| 
       272 
272 
     | 
    
         
             
                    end
         
     | 
| 
       273 
273 
     | 
    
         
             
                  end
         
     | 
| 
       274 
274 
     | 
    
         | 
| 
      
 275 
     | 
    
         
            +
                  # Represents a whole or partial calendar date, such as a birthday. The time of
         
     | 
| 
      
 276 
     | 
    
         
            +
                  # day and time zone are either specified elsewhere or are insignificant. The
         
     | 
| 
      
 277 
     | 
    
         
            +
                  # date is relative to the Gregorian Calendar. This can represent one of the
         
     | 
| 
      
 278 
     | 
    
         
            +
                  # following: * A full date, with non-zero year, month, and day values. * A month
         
     | 
| 
      
 279 
     | 
    
         
            +
                  # and day, with a zero year (for example, an anniversary). * A year on its own,
         
     | 
| 
      
 280 
     | 
    
         
            +
                  # with a zero month and a zero day. * A year and month, with a zero day (for
         
     | 
| 
      
 281 
     | 
    
         
            +
                  # example, a credit card expiration date). Related types: * google.type.
         
     | 
| 
      
 282 
     | 
    
         
            +
                  # TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
         
     | 
| 
      
 283 
     | 
    
         
            +
                  class Date
         
     | 
| 
      
 284 
     | 
    
         
            +
                    include Google::Apis::Core::Hashable
         
     | 
| 
      
 285 
     | 
    
         
            +
                  
         
     | 
| 
      
 286 
     | 
    
         
            +
                    # Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to
         
     | 
| 
      
 287 
     | 
    
         
            +
                    # specify a year by itself or a year and month where the day isn't significant.
         
     | 
| 
      
 288 
     | 
    
         
            +
                    # Corresponds to the JSON property `day`
         
     | 
| 
      
 289 
     | 
    
         
            +
                    # @return [Fixnum]
         
     | 
| 
      
 290 
     | 
    
         
            +
                    attr_accessor :day
         
     | 
| 
      
 291 
     | 
    
         
            +
                  
         
     | 
| 
      
 292 
     | 
    
         
            +
                    # Month of a year. Must be from 1 to 12, or 0 to specify a year without a month
         
     | 
| 
      
 293 
     | 
    
         
            +
                    # and day.
         
     | 
| 
      
 294 
     | 
    
         
            +
                    # Corresponds to the JSON property `month`
         
     | 
| 
      
 295 
     | 
    
         
            +
                    # @return [Fixnum]
         
     | 
| 
      
 296 
     | 
    
         
            +
                    attr_accessor :month
         
     | 
| 
      
 297 
     | 
    
         
            +
                  
         
     | 
| 
      
 298 
     | 
    
         
            +
                    # Year of the date. Must be from 1 to 9999, or 0 to specify a date without a
         
     | 
| 
      
 299 
     | 
    
         
            +
                    # year.
         
     | 
| 
      
 300 
     | 
    
         
            +
                    # Corresponds to the JSON property `year`
         
     | 
| 
      
 301 
     | 
    
         
            +
                    # @return [Fixnum]
         
     | 
| 
      
 302 
     | 
    
         
            +
                    attr_accessor :year
         
     | 
| 
      
 303 
     | 
    
         
            +
                  
         
     | 
| 
      
 304 
     | 
    
         
            +
                    def initialize(**args)
         
     | 
| 
      
 305 
     | 
    
         
            +
                       update!(**args)
         
     | 
| 
      
 306 
     | 
    
         
            +
                    end
         
     | 
| 
      
 307 
     | 
    
         
            +
                  
         
     | 
| 
      
 308 
     | 
    
         
            +
                    # Update properties of this object
         
     | 
| 
      
 309 
     | 
    
         
            +
                    def update!(**args)
         
     | 
| 
      
 310 
     | 
    
         
            +
                      @day = args[:day] if args.key?(:day)
         
     | 
| 
      
 311 
     | 
    
         
            +
                      @month = args[:month] if args.key?(:month)
         
     | 
| 
      
 312 
     | 
    
         
            +
                      @year = args[:year] if args.key?(:year)
         
     | 
| 
      
 313 
     | 
    
         
            +
                    end
         
     | 
| 
      
 314 
     | 
    
         
            +
                  end
         
     | 
| 
      
 315 
     | 
    
         
            +
                  
         
     | 
| 
       275 
316 
     | 
    
         
             
                  # Filters events based on exact matches on the CloudEvents attributes.
         
     | 
| 
       276 
317 
     | 
    
         
             
                  class EventFilter
         
     | 
| 
       277 
318 
     | 
    
         
             
                    include Google::Apis::Core::Hashable
         
     | 
| 
         @@ -1588,6 +1629,30 @@ module Google 
     | 
|
| 
       1588 
1629 
     | 
    
         
             
                  class Runtime
         
     | 
| 
       1589 
1630 
     | 
    
         
             
                    include Google::Apis::Core::Hashable
         
     | 
| 
       1590 
1631 
     | 
    
         | 
| 
      
 1632 
     | 
    
         
            +
                    # Represents a whole or partial calendar date, such as a birthday. The time of
         
     | 
| 
      
 1633 
     | 
    
         
            +
                    # day and time zone are either specified elsewhere or are insignificant. The
         
     | 
| 
      
 1634 
     | 
    
         
            +
                    # date is relative to the Gregorian Calendar. This can represent one of the
         
     | 
| 
      
 1635 
     | 
    
         
            +
                    # following: * A full date, with non-zero year, month, and day values. * A month
         
     | 
| 
      
 1636 
     | 
    
         
            +
                    # and day, with a zero year (for example, an anniversary). * A year on its own,
         
     | 
| 
      
 1637 
     | 
    
         
            +
                    # with a zero month and a zero day. * A year and month, with a zero day (for
         
     | 
| 
      
 1638 
     | 
    
         
            +
                    # example, a credit card expiration date). Related types: * google.type.
         
     | 
| 
      
 1639 
     | 
    
         
            +
                    # TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
         
     | 
| 
      
 1640 
     | 
    
         
            +
                    # Corresponds to the JSON property `decommissionDate`
         
     | 
| 
      
 1641 
     | 
    
         
            +
                    # @return [Google::Apis::CloudfunctionsV2alpha::Date]
         
     | 
| 
      
 1642 
     | 
    
         
            +
                    attr_accessor :decommission_date
         
     | 
| 
      
 1643 
     | 
    
         
            +
                  
         
     | 
| 
      
 1644 
     | 
    
         
            +
                    # Represents a whole or partial calendar date, such as a birthday. The time of
         
     | 
| 
      
 1645 
     | 
    
         
            +
                    # day and time zone are either specified elsewhere or are insignificant. The
         
     | 
| 
      
 1646 
     | 
    
         
            +
                    # date is relative to the Gregorian Calendar. This can represent one of the
         
     | 
| 
      
 1647 
     | 
    
         
            +
                    # following: * A full date, with non-zero year, month, and day values. * A month
         
     | 
| 
      
 1648 
     | 
    
         
            +
                    # and day, with a zero year (for example, an anniversary). * A year on its own,
         
     | 
| 
      
 1649 
     | 
    
         
            +
                    # with a zero month and a zero day. * A year and month, with a zero day (for
         
     | 
| 
      
 1650 
     | 
    
         
            +
                    # example, a credit card expiration date). Related types: * google.type.
         
     | 
| 
      
 1651 
     | 
    
         
            +
                    # TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
         
     | 
| 
      
 1652 
     | 
    
         
            +
                    # Corresponds to the JSON property `deprecationDate`
         
     | 
| 
      
 1653 
     | 
    
         
            +
                    # @return [Google::Apis::CloudfunctionsV2alpha::Date]
         
     | 
| 
      
 1654 
     | 
    
         
            +
                    attr_accessor :deprecation_date
         
     | 
| 
      
 1655 
     | 
    
         
            +
                  
         
     | 
| 
       1591 
1656 
     | 
    
         
             
                    # The user facing name, eg 'Go 1.13', 'Node.js 12', etc.
         
     | 
| 
       1592 
1657 
     | 
    
         
             
                    # Corresponds to the JSON property `displayName`
         
     | 
| 
       1593 
1658 
     | 
    
         
             
                    # @return [String]
         
     | 
| 
         @@ -1619,6 +1684,8 @@ module Google 
     | 
|
| 
       1619 
1684 
     | 
    
         | 
| 
       1620 
1685 
     | 
    
         
             
                    # Update properties of this object
         
     | 
| 
       1621 
1686 
     | 
    
         
             
                    def update!(**args)
         
     | 
| 
      
 1687 
     | 
    
         
            +
                      @decommission_date = args[:decommission_date] if args.key?(:decommission_date)
         
     | 
| 
      
 1688 
     | 
    
         
            +
                      @deprecation_date = args[:deprecation_date] if args.key?(:deprecation_date)
         
     | 
| 
       1622 
1689 
     | 
    
         
             
                      @display_name = args[:display_name] if args.key?(:display_name)
         
     | 
| 
       1623 
1690 
     | 
    
         
             
                      @environment = args[:environment] if args.key?(:environment)
         
     | 
| 
       1624 
1691 
     | 
    
         
             
                      @name = args[:name] if args.key?(:name)
         
     | 
| 
         @@ -16,13 +16,13 @@ module Google 
     | 
|
| 
       16 
16 
     | 
    
         
             
              module Apis
         
     | 
| 
       17 
17 
     | 
    
         
             
                module CloudfunctionsV2alpha
         
     | 
| 
       18 
18 
     | 
    
         
             
                  # Version of the google-apis-cloudfunctions_v2alpha gem
         
     | 
| 
       19 
     | 
    
         
            -
                  GEM_VERSION = "0. 
     | 
| 
      
 19 
     | 
    
         
            +
                  GEM_VERSION = "0.35.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 = "20230907"
         
     | 
| 
       26 
26 
     | 
    
         
             
                end
         
     | 
| 
       27 
27 
     | 
    
         
             
              end
         
     | 
| 
       28 
28 
     | 
    
         
             
            end
         
     | 
| 
         @@ -46,6 +46,12 @@ module Google 
     | 
|
| 
       46 
46 
     | 
    
         
             
                    include Google::Apis::Core::JsonObjectSupport
         
     | 
| 
       47 
47 
     | 
    
         
             
                  end
         
     | 
| 
       48 
48 
     | 
    
         | 
| 
      
 49 
     | 
    
         
            +
                  class Date
         
     | 
| 
      
 50 
     | 
    
         
            +
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         
     | 
| 
      
 51 
     | 
    
         
            +
                  
         
     | 
| 
      
 52 
     | 
    
         
            +
                    include Google::Apis::Core::JsonObjectSupport
         
     | 
| 
      
 53 
     | 
    
         
            +
                  end
         
     | 
| 
      
 54 
     | 
    
         
            +
                  
         
     | 
| 
       49 
55 
     | 
    
         
             
                  class EventFilter
         
     | 
| 
       50 
56 
     | 
    
         
             
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         
     | 
| 
       51 
57 
     | 
    
         | 
| 
         @@ -337,6 +343,15 @@ module Google 
     | 
|
| 
       337 
343 
     | 
    
         
             
                    end
         
     | 
| 
       338 
344 
     | 
    
         
             
                  end
         
     | 
| 
       339 
345 
     | 
    
         | 
| 
      
 346 
     | 
    
         
            +
                  class Date
         
     | 
| 
      
 347 
     | 
    
         
            +
                    # @private
         
     | 
| 
      
 348 
     | 
    
         
            +
                    class Representation < Google::Apis::Core::JsonRepresentation
         
     | 
| 
      
 349 
     | 
    
         
            +
                      property :day, as: 'day'
         
     | 
| 
      
 350 
     | 
    
         
            +
                      property :month, as: 'month'
         
     | 
| 
      
 351 
     | 
    
         
            +
                      property :year, as: 'year'
         
     | 
| 
      
 352 
     | 
    
         
            +
                    end
         
     | 
| 
      
 353 
     | 
    
         
            +
                  end
         
     | 
| 
      
 354 
     | 
    
         
            +
                  
         
     | 
| 
       340 
355 
     | 
    
         
             
                  class EventFilter
         
     | 
| 
       341 
356 
     | 
    
         
             
                    # @private
         
     | 
| 
       342 
357 
     | 
    
         
             
                    class Representation < Google::Apis::Core::JsonRepresentation
         
     | 
| 
         @@ -661,6 +676,10 @@ module Google 
     | 
|
| 
       661 
676 
     | 
    
         
             
                  class Runtime
         
     | 
| 
       662 
677 
     | 
    
         
             
                    # @private
         
     | 
| 
       663 
678 
     | 
    
         
             
                    class Representation < Google::Apis::Core::JsonRepresentation
         
     | 
| 
      
 679 
     | 
    
         
            +
                      property :decommission_date, as: 'decommissionDate', class: Google::Apis::CloudfunctionsV2alpha::Date, decorator: Google::Apis::CloudfunctionsV2alpha::Date::Representation
         
     | 
| 
      
 680 
     | 
    
         
            +
                  
         
     | 
| 
      
 681 
     | 
    
         
            +
                      property :deprecation_date, as: 'deprecationDate', class: Google::Apis::CloudfunctionsV2alpha::Date, decorator: Google::Apis::CloudfunctionsV2alpha::Date::Representation
         
     | 
| 
      
 682 
     | 
    
         
            +
                  
         
     | 
| 
       664 
683 
     | 
    
         
             
                      property :display_name, as: 'displayName'
         
     | 
| 
       665 
684 
     | 
    
         
             
                      property :environment, as: 'environment'
         
     | 
| 
       666 
685 
     | 
    
         
             
                      property :name, as: 'name'
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,14 +1,14 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: google-apis-cloudfunctions_v2alpha
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 0. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.35.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-09-17 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-cloudfunctions_v2alpha/CHANGELOG.md
         
     | 
| 
       61 
     | 
    
         
            -
              documentation_uri: https://googleapis.dev/ruby/google-apis-cloudfunctions_v2alpha/v0. 
     | 
| 
      
 61 
     | 
    
         
            +
              documentation_uri: https://googleapis.dev/ruby/google-apis-cloudfunctions_v2alpha/v0.35.0
         
     | 
| 
       62 
62 
     | 
    
         
             
              source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudfunctions_v2alpha
         
     | 
| 
       63 
63 
     | 
    
         
             
            post_install_message: 
         
     | 
| 
       64 
64 
     | 
    
         
             
            rdoc_options: []
         
     | 
| 
         @@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement 
     | 
|
| 
       75 
75 
     | 
    
         
             
                - !ruby/object:Gem::Version
         
     | 
| 
       76 
76 
     | 
    
         
             
                  version: '0'
         
     | 
| 
       77 
77 
     | 
    
         
             
            requirements: []
         
     | 
| 
       78 
     | 
    
         
            -
            rubygems_version: 3.4. 
     | 
| 
      
 78 
     | 
    
         
            +
            rubygems_version: 3.4.19
         
     | 
| 
       79 
79 
     | 
    
         
             
            signing_key: 
         
     | 
| 
       80 
80 
     | 
    
         
             
            specification_version: 4
         
     | 
| 
       81 
81 
     | 
    
         
             
            summary: Simple REST client for Cloud Functions API V2alpha
         
     |