google-apis-compute_v1 0.52.0 → 0.53.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: d3e95dddd48e87c4d418425888a8638af3d5ea8669957269b51d257c6bbb143d
         | 
| 4 | 
            +
              data.tar.gz: d4fac0643012ad6e7aca2ae2a4f85eb57e6c8c7c9f16675e4adcb08d3565c98b
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: c28e220507ac22457de640b0b7c5c6939291e24e78fcded5f4aeb8799b22bc32d82ec2d69bf9f8997b198a6e1029d22a50837c01d524ea0eaa0c9c3893af6479
         | 
| 7 | 
            +
              data.tar.gz: 2cf7955ef292a8276f0c416253128440ae1e8ea56e8a67b6690f55d19fc8f2d7fe665a808a9a46681d2a76f2be97094dd560da97ffb12c4370e1091404c3514b
         | 
    
        data/CHANGELOG.md
    CHANGED
    
    
| @@ -591,6 +591,13 @@ module Google | |
| 591 591 | 
             
                    # @return [String]
         | 
| 592 592 | 
             
                    attr_accessor :ip_version
         | 
| 593 593 |  | 
| 594 | 
            +
                    # The endpoint type of this address, which should be VM or NETLB. This is used
         | 
| 595 | 
            +
                    # for deciding which type of endpoint this address can be used after the
         | 
| 596 | 
            +
                    # external IPv6 address reservation.
         | 
| 597 | 
            +
                    # Corresponds to the JSON property `ipv6EndpointType`
         | 
| 598 | 
            +
                    # @return [String]
         | 
| 599 | 
            +
                    attr_accessor :ipv6_endpoint_type
         | 
| 600 | 
            +
                  
         | 
| 594 601 | 
             
                    # [Output Only] Type of the resource. Always compute#address for addresses.
         | 
| 595 602 | 
             
                    # Corresponds to the JSON property `kind`
         | 
| 596 603 | 
             
                    # @return [String]
         | 
| @@ -690,6 +697,7 @@ module Google | |
| 690 697 | 
             
                      @description = args[:description] if args.key?(:description)
         | 
| 691 698 | 
             
                      @id = args[:id] if args.key?(:id)
         | 
| 692 699 | 
             
                      @ip_version = args[:ip_version] if args.key?(:ip_version)
         | 
| 700 | 
            +
                      @ipv6_endpoint_type = args[:ipv6_endpoint_type] if args.key?(:ipv6_endpoint_type)
         | 
| 693 701 | 
             
                      @kind = args[:kind] if args.key?(:kind)
         | 
| 694 702 | 
             
                      @name = args[:name] if args.key?(:name)
         | 
| 695 703 | 
             
                      @network = args[:network] if args.key?(:network)
         | 
| @@ -8888,7 +8896,16 @@ module Google | |
| 8888 8896 | 
             
                    # @return [String]
         | 
| 8889 8897 | 
             
                    attr_accessor :subnetwork
         | 
| 8890 8898 |  | 
| 8891 | 
            -
                    # 
         | 
| 8899 | 
            +
                    # The URL of the target resource to receive the matched traffic. For regional
         | 
| 8900 | 
            +
                    # forwarding rules, this target must be in the same region as the forwarding
         | 
| 8901 | 
            +
                    # rule. For global forwarding rules, this target must be a global load balancing
         | 
| 8902 | 
            +
                    # resource. The forwarded traffic must be of a type appropriate to the target
         | 
| 8903 | 
            +
                    # object. For more information, see the "Target" column in [Port specifications](
         | 
| 8904 | 
            +
                    # https://cloud.google.com/load-balancing/docs/forwarding-rule-concepts#
         | 
| 8905 | 
            +
                    # ip_address_specifications). For Private Service Connect forwarding rules that
         | 
| 8906 | 
            +
                    # forward traffic to Google APIs, provide the name of a supported Google API
         | 
| 8907 | 
            +
                    # bundle: - vpc-sc - APIs that support VPC Service Controls. - all-apis - All
         | 
| 8908 | 
            +
                    # supported Google APIs.
         | 
| 8892 8909 | 
             
                    # Corresponds to the JSON property `target`
         | 
| 8893 8910 | 
             
                    # @return [String]
         | 
| 8894 8911 | 
             
                    attr_accessor :target
         | 
| @@ -30950,11 +30967,22 @@ module Google | |
| 30950 30967 | 
             
                    # @return [Google::Apis::ComputeV1::BfdStatus]
         | 
| 30951 30968 | 
             
                    attr_accessor :bfd_status
         | 
| 30952 30969 |  | 
| 30970 | 
            +
                    # Enable IPv6 traffic over BGP Peer. If not specified, it is disabled by default.
         | 
| 30971 | 
            +
                    # Corresponds to the JSON property `enableIpv6`
         | 
| 30972 | 
            +
                    # @return [Boolean]
         | 
| 30973 | 
            +
                    attr_accessor :enable_ipv6
         | 
| 30974 | 
            +
                    alias_method :enable_ipv6?, :enable_ipv6
         | 
| 30975 | 
            +
                  
         | 
| 30953 30976 | 
             
                    # IP address of the local BGP interface.
         | 
| 30954 30977 | 
             
                    # Corresponds to the JSON property `ipAddress`
         | 
| 30955 30978 | 
             
                    # @return [String]
         | 
| 30956 30979 | 
             
                    attr_accessor :ip_address
         | 
| 30957 30980 |  | 
| 30981 | 
            +
                    # IPv6 address of the local BGP interface.
         | 
| 30982 | 
            +
                    # Corresponds to the JSON property `ipv6NexthopAddress`
         | 
| 30983 | 
            +
                    # @return [String]
         | 
| 30984 | 
            +
                    attr_accessor :ipv6_nexthop_address
         | 
| 30985 | 
            +
                  
         | 
| 30958 30986 | 
             
                    # URL of the VPN tunnel that this BGP peer controls.
         | 
| 30959 30987 | 
             
                    # Corresponds to the JSON property `linkedVpnTunnel`
         | 
| 30960 30988 | 
             
                    # @return [String]
         | 
| @@ -30981,6 +31009,11 @@ module Google | |
| 30981 31009 | 
             
                    # @return [String]
         | 
| 30982 31010 | 
             
                    attr_accessor :peer_ip_address
         | 
| 30983 31011 |  | 
| 31012 | 
            +
                    # IPv6 address of the remote BGP interface.
         | 
| 31013 | 
            +
                    # Corresponds to the JSON property `peerIpv6NexthopAddress`
         | 
| 31014 | 
            +
                    # @return [String]
         | 
| 31015 | 
            +
                    attr_accessor :peer_ipv6_nexthop_address
         | 
| 31016 | 
            +
                  
         | 
| 30984 31017 | 
             
                    # [Output only] URI of the VM instance that is used as third-party router
         | 
| 30985 31018 | 
             
                    # appliances such as Next Gen Firewalls, Virtual Routers, or Router Appliances.
         | 
| 30986 31019 | 
             
                    # The VM instance is the peer side of the BGP session.
         | 
| @@ -31023,12 +31056,15 @@ module Google | |
| 31023 31056 | 
             
                    def update!(**args)
         | 
| 31024 31057 | 
             
                      @advertised_routes = args[:advertised_routes] if args.key?(:advertised_routes)
         | 
| 31025 31058 | 
             
                      @bfd_status = args[:bfd_status] if args.key?(:bfd_status)
         | 
| 31059 | 
            +
                      @enable_ipv6 = args[:enable_ipv6] if args.key?(:enable_ipv6)
         | 
| 31026 31060 | 
             
                      @ip_address = args[:ip_address] if args.key?(:ip_address)
         | 
| 31061 | 
            +
                      @ipv6_nexthop_address = args[:ipv6_nexthop_address] if args.key?(:ipv6_nexthop_address)
         | 
| 31027 31062 | 
             
                      @linked_vpn_tunnel = args[:linked_vpn_tunnel] if args.key?(:linked_vpn_tunnel)
         | 
| 31028 31063 | 
             
                      @md5_auth_enabled = args[:md5_auth_enabled] if args.key?(:md5_auth_enabled)
         | 
| 31029 31064 | 
             
                      @name = args[:name] if args.key?(:name)
         | 
| 31030 31065 | 
             
                      @num_learned_routes = args[:num_learned_routes] if args.key?(:num_learned_routes)
         | 
| 31031 31066 | 
             
                      @peer_ip_address = args[:peer_ip_address] if args.key?(:peer_ip_address)
         | 
| 31067 | 
            +
                      @peer_ipv6_nexthop_address = args[:peer_ipv6_nexthop_address] if args.key?(:peer_ipv6_nexthop_address)
         | 
| 31032 31068 | 
             
                      @router_appliance_instance = args[:router_appliance_instance] if args.key?(:router_appliance_instance)
         | 
| 31033 31069 | 
             
                      @state = args[:state] if args.key?(:state)
         | 
| 31034 31070 | 
             
                      @status = args[:status] if args.key?(:status)
         | 
| @@ -16,13 +16,13 @@ module Google | |
| 16 16 | 
             
              module Apis
         | 
| 17 17 | 
             
                module ComputeV1
         | 
| 18 18 | 
             
                  # Version of the google-apis-compute_v1 gem
         | 
| 19 | 
            -
                  GEM_VERSION = "0. | 
| 19 | 
            +
                  GEM_VERSION = "0.53.0"
         | 
| 20 20 |  | 
| 21 21 | 
             
                  # Version of the code generator used to generate this client
         | 
| 22 22 | 
             
                  GENERATOR_VERSION = "0.10.0"
         | 
| 23 23 |  | 
| 24 24 | 
             
                  # Revision of the discovery document this client was generated from
         | 
| 25 | 
            -
                  REVISION = " | 
| 25 | 
            +
                  REVISION = "20220918"
         | 
| 26 26 | 
             
                end
         | 
| 27 27 | 
             
              end
         | 
| 28 28 | 
             
            end
         | 
| @@ -5755,6 +5755,7 @@ module Google | |
| 5755 5755 | 
             
                      property :description, as: 'description'
         | 
| 5756 5756 | 
             
                      property :id, :numeric_string => true, as: 'id'
         | 
| 5757 5757 | 
             
                      property :ip_version, as: 'ipVersion'
         | 
| 5758 | 
            +
                      property :ipv6_endpoint_type, as: 'ipv6EndpointType'
         | 
| 5758 5759 | 
             
                      property :kind, as: 'kind'
         | 
| 5759 5760 | 
             
                      property :name, as: 'name'
         | 
| 5760 5761 | 
             
                      property :network, as: 'network'
         | 
| @@ -13150,12 +13151,15 @@ module Google | |
| 13150 13151 |  | 
| 13151 13152 | 
             
                      property :bfd_status, as: 'bfdStatus', class: Google::Apis::ComputeV1::BfdStatus, decorator: Google::Apis::ComputeV1::BfdStatus::Representation
         | 
| 13152 13153 |  | 
| 13154 | 
            +
                      property :enable_ipv6, as: 'enableIpv6'
         | 
| 13153 13155 | 
             
                      property :ip_address, as: 'ipAddress'
         | 
| 13156 | 
            +
                      property :ipv6_nexthop_address, as: 'ipv6NexthopAddress'
         | 
| 13154 13157 | 
             
                      property :linked_vpn_tunnel, as: 'linkedVpnTunnel'
         | 
| 13155 13158 | 
             
                      property :md5_auth_enabled, as: 'md5AuthEnabled'
         | 
| 13156 13159 | 
             
                      property :name, as: 'name'
         | 
| 13157 13160 | 
             
                      property :num_learned_routes, as: 'numLearnedRoutes'
         | 
| 13158 13161 | 
             
                      property :peer_ip_address, as: 'peerIpAddress'
         | 
| 13162 | 
            +
                      property :peer_ipv6_nexthop_address, as: 'peerIpv6NexthopAddress'
         | 
| 13159 13163 | 
             
                      property :router_appliance_instance, as: 'routerApplianceInstance'
         | 
| 13160 13164 | 
             
                      property :state, as: 'state'
         | 
| 13161 13165 | 
             
                      property :status, as: 'status'
         | 
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: google-apis-compute_v1
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 0. | 
| 4 | 
            +
              version: 0.53.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: 2022- | 
| 11 | 
            +
            date: 2022-10-03 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-compute_v1/CHANGELOG.md
         | 
| 61 | 
            -
              documentation_uri: https://googleapis.dev/ruby/google-apis-compute_v1/v0. | 
| 61 | 
            +
              documentation_uri: https://googleapis.dev/ruby/google-apis-compute_v1/v0.53.0
         | 
| 62 62 | 
             
              source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_v1
         | 
| 63 63 | 
             
            post_install_message: 
         | 
| 64 64 | 
             
            rdoc_options: []
         |