google-apis-compute_v1 0.79.0 → 0.80.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 +4 -0
- data/lib/google/apis/compute_v1/classes.rb +313 -22
- data/lib/google/apis/compute_v1/gem_version.rb +2 -2
- data/lib/google/apis/compute_v1/representations.rb +125 -0
- data/lib/google/apis/compute_v1/service.rb +545 -41
- metadata +3 -3
| @@ -114,6 +114,7 @@ module Google | |
| 114 114 | 
             
                    # @param [Boolean] return_partial_success
         | 
| 115 115 | 
             
                    #   Opt-in for partial success behavior which provides partial results in case of
         | 
| 116 116 | 
             
                    #   failure. The default value is false.
         | 
| 117 | 
            +
                    # @param [Fixnum] service_project_number
         | 
| 117 118 | 
             
                    # @param [String] fields
         | 
| 118 119 | 
             
                    #   Selector specifying which fields to include in a partial response.
         | 
| 119 120 | 
             
                    # @param [String] quota_user
         | 
| @@ -133,7 +134,7 @@ module Google | |
| 133 134 | 
             
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 134 135 | 
             
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 135 136 | 
             
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 136 | 
            -
                    def aggregated_accelerator_type_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 137 | 
            +
                    def aggregated_accelerator_type_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, service_project_number: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 137 138 | 
             
                      command = make_simple_command(:get, 'projects/{project}/aggregated/acceleratorTypes', options)
         | 
| 138 139 | 
             
                      command.response_representation = Google::Apis::ComputeV1::AcceleratorTypeAggregatedList::Representation
         | 
| 139 140 | 
             
                      command.response_class = Google::Apis::ComputeV1::AcceleratorTypeAggregatedList
         | 
| @@ -144,6 +145,7 @@ module Google | |
| 144 145 | 
             
                      command.query['orderBy'] = order_by unless order_by.nil?
         | 
| 145 146 | 
             
                      command.query['pageToken'] = page_token unless page_token.nil?
         | 
| 146 147 | 
             
                      command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
         | 
| 148 | 
            +
                      command.query['serviceProjectNumber'] = service_project_number unless service_project_number.nil?
         | 
| 147 149 | 
             
                      command.query['fields'] = fields unless fields.nil?
         | 
| 148 150 | 
             
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 149 151 | 
             
                      command.query['userIp'] = user_ip unless user_ip.nil?
         | 
| @@ -343,6 +345,7 @@ module Google | |
| 343 345 | 
             
                    # @param [Boolean] return_partial_success
         | 
| 344 346 | 
             
                    #   Opt-in for partial success behavior which provides partial results in case of
         | 
| 345 347 | 
             
                    #   failure. The default value is false.
         | 
| 348 | 
            +
                    # @param [Fixnum] service_project_number
         | 
| 346 349 | 
             
                    # @param [String] fields
         | 
| 347 350 | 
             
                    #   Selector specifying which fields to include in a partial response.
         | 
| 348 351 | 
             
                    # @param [String] quota_user
         | 
| @@ -362,7 +365,7 @@ module Google | |
| 362 365 | 
             
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 363 366 | 
             
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 364 367 | 
             
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 365 | 
            -
                    def list_aggregated_addresses(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 368 | 
            +
                    def list_aggregated_addresses(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, service_project_number: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 366 369 | 
             
                      command = make_simple_command(:get, 'projects/{project}/aggregated/addresses', options)
         | 
| 367 370 | 
             
                      command.response_representation = Google::Apis::ComputeV1::AddressAggregatedList::Representation
         | 
| 368 371 | 
             
                      command.response_class = Google::Apis::ComputeV1::AddressAggregatedList
         | 
| @@ -373,6 +376,7 @@ module Google | |
| 373 376 | 
             
                      command.query['orderBy'] = order_by unless order_by.nil?
         | 
| 374 377 | 
             
                      command.query['pageToken'] = page_token unless page_token.nil?
         | 
| 375 378 | 
             
                      command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
         | 
| 379 | 
            +
                      command.query['serviceProjectNumber'] = service_project_number unless service_project_number.nil?
         | 
| 376 380 | 
             
                      command.query['fields'] = fields unless fields.nil?
         | 
| 377 381 | 
             
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 378 382 | 
             
                      command.query['userIp'] = user_ip unless user_ip.nil?
         | 
| @@ -779,6 +783,7 @@ module Google | |
| 779 783 | 
             
                    # @param [Boolean] return_partial_success
         | 
| 780 784 | 
             
                    #   Opt-in for partial success behavior which provides partial results in case of
         | 
| 781 785 | 
             
                    #   failure. The default value is false.
         | 
| 786 | 
            +
                    # @param [Fixnum] service_project_number
         | 
| 782 787 | 
             
                    # @param [String] fields
         | 
| 783 788 | 
             
                    #   Selector specifying which fields to include in a partial response.
         | 
| 784 789 | 
             
                    # @param [String] quota_user
         | 
| @@ -798,7 +803,7 @@ module Google | |
| 798 803 | 
             
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 799 804 | 
             
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 800 805 | 
             
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 801 | 
            -
                    def list_aggregated_autoscalers(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 806 | 
            +
                    def list_aggregated_autoscalers(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, service_project_number: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 802 807 | 
             
                      command = make_simple_command(:get, 'projects/{project}/aggregated/autoscalers', options)
         | 
| 803 808 | 
             
                      command.response_representation = Google::Apis::ComputeV1::AutoscalerAggregatedList::Representation
         | 
| 804 809 | 
             
                      command.response_class = Google::Apis::ComputeV1::AutoscalerAggregatedList
         | 
| @@ -809,6 +814,7 @@ module Google | |
| 809 814 | 
             
                      command.query['orderBy'] = order_by unless order_by.nil?
         | 
| 810 815 | 
             
                      command.query['pageToken'] = page_token unless page_token.nil?
         | 
| 811 816 | 
             
                      command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
         | 
| 817 | 
            +
                      command.query['serviceProjectNumber'] = service_project_number unless service_project_number.nil?
         | 
| 812 818 | 
             
                      command.query['fields'] = fields unless fields.nil?
         | 
| 813 819 | 
             
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 814 820 | 
             
                      command.query['userIp'] = user_ip unless user_ip.nil?
         | 
| @@ -1746,6 +1752,7 @@ module Google | |
| 1746 1752 | 
             
                    # @param [Boolean] return_partial_success
         | 
| 1747 1753 | 
             
                    #   Opt-in for partial success behavior which provides partial results in case of
         | 
| 1748 1754 | 
             
                    #   failure. The default value is false.
         | 
| 1755 | 
            +
                    # @param [Fixnum] service_project_number
         | 
| 1749 1756 | 
             
                    # @param [String] fields
         | 
| 1750 1757 | 
             
                    #   Selector specifying which fields to include in a partial response.
         | 
| 1751 1758 | 
             
                    # @param [String] quota_user
         | 
| @@ -1765,7 +1772,7 @@ module Google | |
| 1765 1772 | 
             
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 1766 1773 | 
             
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 1767 1774 | 
             
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 1768 | 
            -
                    def aggregated_backend_service_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 1775 | 
            +
                    def aggregated_backend_service_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, service_project_number: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 1769 1776 | 
             
                      command = make_simple_command(:get, 'projects/{project}/aggregated/backendServices', options)
         | 
| 1770 1777 | 
             
                      command.response_representation = Google::Apis::ComputeV1::BackendServiceAggregatedList::Representation
         | 
| 1771 1778 | 
             
                      command.response_class = Google::Apis::ComputeV1::BackendServiceAggregatedList
         | 
| @@ -1776,6 +1783,7 @@ module Google | |
| 1776 1783 | 
             
                      command.query['orderBy'] = order_by unless order_by.nil?
         | 
| 1777 1784 | 
             
                      command.query['pageToken'] = page_token unless page_token.nil?
         | 
| 1778 1785 | 
             
                      command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
         | 
| 1786 | 
            +
                      command.query['serviceProjectNumber'] = service_project_number unless service_project_number.nil?
         | 
| 1779 1787 | 
             
                      command.query['fields'] = fields unless fields.nil?
         | 
| 1780 1788 | 
             
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 1781 1789 | 
             
                      command.query['userIp'] = user_ip unless user_ip.nil?
         | 
| @@ -2443,6 +2451,7 @@ module Google | |
| 2443 2451 | 
             
                    # @param [Boolean] return_partial_success
         | 
| 2444 2452 | 
             
                    #   Opt-in for partial success behavior which provides partial results in case of
         | 
| 2445 2453 | 
             
                    #   failure. The default value is false.
         | 
| 2454 | 
            +
                    # @param [Fixnum] service_project_number
         | 
| 2446 2455 | 
             
                    # @param [String] fields
         | 
| 2447 2456 | 
             
                    #   Selector specifying which fields to include in a partial response.
         | 
| 2448 2457 | 
             
                    # @param [String] quota_user
         | 
| @@ -2462,7 +2471,7 @@ module Google | |
| 2462 2471 | 
             
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 2463 2472 | 
             
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 2464 2473 | 
             
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 2465 | 
            -
                    def list_aggregated_disk_types(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 2474 | 
            +
                    def list_aggregated_disk_types(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, service_project_number: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 2466 2475 | 
             
                      command = make_simple_command(:get, 'projects/{project}/aggregated/diskTypes', options)
         | 
| 2467 2476 | 
             
                      command.response_representation = Google::Apis::ComputeV1::DiskTypeAggregatedList::Representation
         | 
| 2468 2477 | 
             
                      command.response_class = Google::Apis::ComputeV1::DiskTypeAggregatedList
         | 
| @@ -2473,6 +2482,7 @@ module Google | |
| 2473 2482 | 
             
                      command.query['orderBy'] = order_by unless order_by.nil?
         | 
| 2474 2483 | 
             
                      command.query['pageToken'] = page_token unless page_token.nil?
         | 
| 2475 2484 | 
             
                      command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
         | 
| 2485 | 
            +
                      command.query['serviceProjectNumber'] = service_project_number unless service_project_number.nil?
         | 
| 2476 2486 | 
             
                      command.query['fields'] = fields unless fields.nil?
         | 
| 2477 2487 | 
             
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 2478 2488 | 
             
                      command.query['userIp'] = user_ip unless user_ip.nil?
         | 
| @@ -2725,6 +2735,7 @@ module Google | |
| 2725 2735 | 
             
                    # @param [Boolean] return_partial_success
         | 
| 2726 2736 | 
             
                    #   Opt-in for partial success behavior which provides partial results in case of
         | 
| 2727 2737 | 
             
                    #   failure. The default value is false.
         | 
| 2738 | 
            +
                    # @param [Fixnum] service_project_number
         | 
| 2728 2739 | 
             
                    # @param [String] fields
         | 
| 2729 2740 | 
             
                    #   Selector specifying which fields to include in a partial response.
         | 
| 2730 2741 | 
             
                    # @param [String] quota_user
         | 
| @@ -2744,7 +2755,7 @@ module Google | |
| 2744 2755 | 
             
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 2745 2756 | 
             
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 2746 2757 | 
             
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 2747 | 
            -
                    def list_aggregated_disk(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 2758 | 
            +
                    def list_aggregated_disk(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, service_project_number: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 2748 2759 | 
             
                      command = make_simple_command(:get, 'projects/{project}/aggregated/disks', options)
         | 
| 2749 2760 | 
             
                      command.response_representation = Google::Apis::ComputeV1::DiskAggregatedList::Representation
         | 
| 2750 2761 | 
             
                      command.response_class = Google::Apis::ComputeV1::DiskAggregatedList
         | 
| @@ -2755,6 +2766,7 @@ module Google | |
| 2755 2766 | 
             
                      command.query['orderBy'] = order_by unless order_by.nil?
         | 
| 2756 2767 | 
             
                      command.query['pageToken'] = page_token unless page_token.nil?
         | 
| 2757 2768 | 
             
                      command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
         | 
| 2769 | 
            +
                      command.query['serviceProjectNumber'] = service_project_number unless service_project_number.nil?
         | 
| 2758 2770 | 
             
                      command.query['fields'] = fields unless fields.nil?
         | 
| 2759 2771 | 
             
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 2760 2772 | 
             
                      command.query['userIp'] = user_ip unless user_ip.nil?
         | 
| @@ -5121,6 +5133,7 @@ module Google | |
| 5121 5133 | 
             
                    # @param [Boolean] return_partial_success
         | 
| 5122 5134 | 
             
                    #   Opt-in for partial success behavior which provides partial results in case of
         | 
| 5123 5135 | 
             
                    #   failure. The default value is false.
         | 
| 5136 | 
            +
                    # @param [Fixnum] service_project_number
         | 
| 5124 5137 | 
             
                    # @param [String] fields
         | 
| 5125 5138 | 
             
                    #   Selector specifying which fields to include in a partial response.
         | 
| 5126 5139 | 
             
                    # @param [String] quota_user
         | 
| @@ -5140,7 +5153,7 @@ module Google | |
| 5140 5153 | 
             
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 5141 5154 | 
             
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 5142 5155 | 
             
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 5143 | 
            -
                    def list_aggregated_forwarding_rules(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 5156 | 
            +
                    def list_aggregated_forwarding_rules(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, service_project_number: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 5144 5157 | 
             
                      command = make_simple_command(:get, 'projects/{project}/aggregated/forwardingRules', options)
         | 
| 5145 5158 | 
             
                      command.response_representation = Google::Apis::ComputeV1::ForwardingRuleAggregatedList::Representation
         | 
| 5146 5159 | 
             
                      command.response_class = Google::Apis::ComputeV1::ForwardingRuleAggregatedList
         | 
| @@ -5151,6 +5164,7 @@ module Google | |
| 5151 5164 | 
             
                      command.query['orderBy'] = order_by unless order_by.nil?
         | 
| 5152 5165 | 
             
                      command.query['pageToken'] = page_token unless page_token.nil?
         | 
| 5153 5166 | 
             
                      command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
         | 
| 5167 | 
            +
                      command.query['serviceProjectNumber'] = service_project_number unless service_project_number.nil?
         | 
| 5154 5168 | 
             
                      command.query['fields'] = fields unless fields.nil?
         | 
| 5155 5169 | 
             
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 5156 5170 | 
             
                      command.query['userIp'] = user_ip unless user_ip.nil?
         | 
| @@ -6707,6 +6721,7 @@ module Google | |
| 6707 6721 | 
             
                    # @param [Boolean] return_partial_success
         | 
| 6708 6722 | 
             
                    #   Opt-in for partial success behavior which provides partial results in case of
         | 
| 6709 6723 | 
             
                    #   failure. The default value is false.
         | 
| 6724 | 
            +
                    # @param [Fixnum] service_project_number
         | 
| 6710 6725 | 
             
                    # @param [String] fields
         | 
| 6711 6726 | 
             
                    #   Selector specifying which fields to include in a partial response.
         | 
| 6712 6727 | 
             
                    # @param [String] quota_user
         | 
| @@ -6726,7 +6741,7 @@ module Google | |
| 6726 6741 | 
             
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 6727 6742 | 
             
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 6728 6743 | 
             
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 6729 | 
            -
                    def list_aggregated_global_operation(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 6744 | 
            +
                    def list_aggregated_global_operation(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, service_project_number: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 6730 6745 | 
             
                      command = make_simple_command(:get, 'projects/{project}/aggregated/operations', options)
         | 
| 6731 6746 | 
             
                      command.response_representation = Google::Apis::ComputeV1::OperationAggregatedList::Representation
         | 
| 6732 6747 | 
             
                      command.response_class = Google::Apis::ComputeV1::OperationAggregatedList
         | 
| @@ -6737,6 +6752,7 @@ module Google | |
| 6737 6752 | 
             
                      command.query['orderBy'] = order_by unless order_by.nil?
         | 
| 6738 6753 | 
             
                      command.query['pageToken'] = page_token unless page_token.nil?
         | 
| 6739 6754 | 
             
                      command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
         | 
| 6755 | 
            +
                      command.query['serviceProjectNumber'] = service_project_number unless service_project_number.nil?
         | 
| 6740 6756 | 
             
                      command.query['fields'] = fields unless fields.nil?
         | 
| 6741 6757 | 
             
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 6742 6758 | 
             
                      command.query['userIp'] = user_ip unless user_ip.nil?
         | 
| @@ -7442,6 +7458,7 @@ module Google | |
| 7442 7458 | 
             
                    # @param [Boolean] return_partial_success
         | 
| 7443 7459 | 
             
                    #   Opt-in for partial success behavior which provides partial results in case of
         | 
| 7444 7460 | 
             
                    #   failure. The default value is false.
         | 
| 7461 | 
            +
                    # @param [Fixnum] service_project_number
         | 
| 7445 7462 | 
             
                    # @param [String] fields
         | 
| 7446 7463 | 
             
                    #   Selector specifying which fields to include in a partial response.
         | 
| 7447 7464 | 
             
                    # @param [String] quota_user
         | 
| @@ -7461,7 +7478,7 @@ module Google | |
| 7461 7478 | 
             
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 7462 7479 | 
             
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 7463 7480 | 
             
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 7464 | 
            -
                    def aggregated_health_check_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 7481 | 
            +
                    def aggregated_health_check_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, service_project_number: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 7465 7482 | 
             
                      command = make_simple_command(:get, 'projects/{project}/aggregated/healthChecks', options)
         | 
| 7466 7483 | 
             
                      command.response_representation = Google::Apis::ComputeV1::HealthChecksAggregatedList::Representation
         | 
| 7467 7484 | 
             
                      command.response_class = Google::Apis::ComputeV1::HealthChecksAggregatedList
         | 
| @@ -7472,6 +7489,7 @@ module Google | |
| 7472 7489 | 
             
                      command.query['orderBy'] = order_by unless order_by.nil?
         | 
| 7473 7490 | 
             
                      command.query['pageToken'] = page_token unless page_token.nil?
         | 
| 7474 7491 | 
             
                      command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
         | 
| 7492 | 
            +
                      command.query['serviceProjectNumber'] = service_project_number unless service_project_number.nil?
         | 
| 7475 7493 | 
             
                      command.query['fields'] = fields unless fields.nil?
         | 
| 7476 7494 | 
             
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 7477 7495 | 
             
                      command.query['userIp'] = user_ip unless user_ip.nil?
         | 
| @@ -9142,6 +9160,7 @@ module Google | |
| 9142 9160 | 
             
                    # @param [Boolean] return_partial_success
         | 
| 9143 9161 | 
             
                    #   Opt-in for partial success behavior which provides partial results in case of
         | 
| 9144 9162 | 
             
                    #   failure. The default value is false.
         | 
| 9163 | 
            +
                    # @param [Fixnum] service_project_number
         | 
| 9145 9164 | 
             
                    # @param [String] fields
         | 
| 9146 9165 | 
             
                    #   Selector specifying which fields to include in a partial response.
         | 
| 9147 9166 | 
             
                    # @param [String] quota_user
         | 
| @@ -9161,7 +9180,7 @@ module Google | |
| 9161 9180 | 
             
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 9162 9181 | 
             
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 9163 9182 | 
             
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 9164 | 
            -
                    def list_aggregated_instance_group_managers(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 9183 | 
            +
                    def list_aggregated_instance_group_managers(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, service_project_number: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 9165 9184 | 
             
                      command = make_simple_command(:get, 'projects/{project}/aggregated/instanceGroupManagers', options)
         | 
| 9166 9185 | 
             
                      command.response_representation = Google::Apis::ComputeV1::InstanceGroupManagerAggregatedList::Representation
         | 
| 9167 9186 | 
             
                      command.response_class = Google::Apis::ComputeV1::InstanceGroupManagerAggregatedList
         | 
| @@ -9172,6 +9191,7 @@ module Google | |
| 9172 9191 | 
             
                      command.query['orderBy'] = order_by unless order_by.nil?
         | 
| 9173 9192 | 
             
                      command.query['pageToken'] = page_token unless page_token.nil?
         | 
| 9174 9193 | 
             
                      command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
         | 
| 9194 | 
            +
                      command.query['serviceProjectNumber'] = service_project_number unless service_project_number.nil?
         | 
| 9175 9195 | 
             
                      command.query['fields'] = fields unless fields.nil?
         | 
| 9176 9196 | 
             
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 9177 9197 | 
             
                      command.query['userIp'] = user_ip unless user_ip.nil?
         | 
| @@ -10459,6 +10479,7 @@ module Google | |
| 10459 10479 | 
             
                    # @param [Boolean] return_partial_success
         | 
| 10460 10480 | 
             
                    #   Opt-in for partial success behavior which provides partial results in case of
         | 
| 10461 10481 | 
             
                    #   failure. The default value is false.
         | 
| 10482 | 
            +
                    # @param [Fixnum] service_project_number
         | 
| 10462 10483 | 
             
                    # @param [String] fields
         | 
| 10463 10484 | 
             
                    #   Selector specifying which fields to include in a partial response.
         | 
| 10464 10485 | 
             
                    # @param [String] quota_user
         | 
| @@ -10478,7 +10499,7 @@ module Google | |
| 10478 10499 | 
             
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 10479 10500 | 
             
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 10480 10501 | 
             
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 10481 | 
            -
                    def list_aggregated_instance_groups(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 10502 | 
            +
                    def list_aggregated_instance_groups(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, service_project_number: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 10482 10503 | 
             
                      command = make_simple_command(:get, 'projects/{project}/aggregated/instanceGroups', options)
         | 
| 10483 10504 | 
             
                      command.response_representation = Google::Apis::ComputeV1::InstanceGroupAggregatedList::Representation
         | 
| 10484 10505 | 
             
                      command.response_class = Google::Apis::ComputeV1::InstanceGroupAggregatedList
         | 
| @@ -10489,6 +10510,7 @@ module Google | |
| 10489 10510 | 
             
                      command.query['orderBy'] = order_by unless order_by.nil?
         | 
| 10490 10511 | 
             
                      command.query['pageToken'] = page_token unless page_token.nil?
         | 
| 10491 10512 | 
             
                      command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
         | 
| 10513 | 
            +
                      command.query['serviceProjectNumber'] = service_project_number unless service_project_number.nil?
         | 
| 10492 10514 | 
             
                      command.query['fields'] = fields unless fields.nil?
         | 
| 10493 10515 | 
             
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 10494 10516 | 
             
                      command.query['userIp'] = user_ip unless user_ip.nil?
         | 
| @@ -11005,6 +11027,7 @@ module Google | |
| 11005 11027 | 
             
                    # @param [Boolean] return_partial_success
         | 
| 11006 11028 | 
             
                    #   Opt-in for partial success behavior which provides partial results in case of
         | 
| 11007 11029 | 
             
                    #   failure. The default value is false.
         | 
| 11030 | 
            +
                    # @param [Fixnum] service_project_number
         | 
| 11008 11031 | 
             
                    # @param [String] fields
         | 
| 11009 11032 | 
             
                    #   Selector specifying which fields to include in a partial response.
         | 
| 11010 11033 | 
             
                    # @param [String] quota_user
         | 
| @@ -11024,7 +11047,7 @@ module Google | |
| 11024 11047 | 
             
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 11025 11048 | 
             
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 11026 11049 | 
             
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 11027 | 
            -
                    def aggregated_instance_template_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 11050 | 
            +
                    def aggregated_instance_template_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, service_project_number: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 11028 11051 | 
             
                      command = make_simple_command(:get, 'projects/{project}/aggregated/instanceTemplates', options)
         | 
| 11029 11052 | 
             
                      command.response_representation = Google::Apis::ComputeV1::InstanceTemplateAggregatedList::Representation
         | 
| 11030 11053 | 
             
                      command.response_class = Google::Apis::ComputeV1::InstanceTemplateAggregatedList
         | 
| @@ -11035,6 +11058,7 @@ module Google | |
| 11035 11058 | 
             
                      command.query['orderBy'] = order_by unless order_by.nil?
         | 
| 11036 11059 | 
             
                      command.query['pageToken'] = page_token unless page_token.nil?
         | 
| 11037 11060 | 
             
                      command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
         | 
| 11061 | 
            +
                      command.query['serviceProjectNumber'] = service_project_number unless service_project_number.nil?
         | 
| 11038 11062 | 
             
                      command.query['fields'] = fields unless fields.nil?
         | 
| 11039 11063 | 
             
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 11040 11064 | 
             
                      command.query['userIp'] = user_ip unless user_ip.nil?
         | 
| @@ -11559,6 +11583,7 @@ module Google | |
| 11559 11583 | 
             
                    # @param [Boolean] return_partial_success
         | 
| 11560 11584 | 
             
                    #   Opt-in for partial success behavior which provides partial results in case of
         | 
| 11561 11585 | 
             
                    #   failure. The default value is false.
         | 
| 11586 | 
            +
                    # @param [Fixnum] service_project_number
         | 
| 11562 11587 | 
             
                    # @param [String] fields
         | 
| 11563 11588 | 
             
                    #   Selector specifying which fields to include in a partial response.
         | 
| 11564 11589 | 
             
                    # @param [String] quota_user
         | 
| @@ -11578,7 +11603,7 @@ module Google | |
| 11578 11603 | 
             
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 11579 11604 | 
             
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 11580 11605 | 
             
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 11581 | 
            -
                    def list_aggregated_instances(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 11606 | 
            +
                    def list_aggregated_instances(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, service_project_number: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 11582 11607 | 
             
                      command = make_simple_command(:get, 'projects/{project}/aggregated/instances', options)
         | 
| 11583 11608 | 
             
                      command.response_representation = Google::Apis::ComputeV1::InstanceAggregatedList::Representation
         | 
| 11584 11609 | 
             
                      command.response_class = Google::Apis::ComputeV1::InstanceAggregatedList
         | 
| @@ -11589,6 +11614,7 @@ module Google | |
| 11589 11614 | 
             
                      command.query['orderBy'] = order_by unless order_by.nil?
         | 
| 11590 11615 | 
             
                      command.query['pageToken'] = page_token unless page_token.nil?
         | 
| 11591 11616 | 
             
                      command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
         | 
| 11617 | 
            +
                      command.query['serviceProjectNumber'] = service_project_number unless service_project_number.nil?
         | 
| 11592 11618 | 
             
                      command.query['fields'] = fields unless fields.nil?
         | 
| 11593 11619 | 
             
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 11594 11620 | 
             
                      command.query['userIp'] = user_ip unless user_ip.nil?
         | 
| @@ -14039,6 +14065,7 @@ module Google | |
| 14039 14065 | 
             
                    # @param [Boolean] return_partial_success
         | 
| 14040 14066 | 
             
                    #   Opt-in for partial success behavior which provides partial results in case of
         | 
| 14041 14067 | 
             
                    #   failure. The default value is false.
         | 
| 14068 | 
            +
                    # @param [Fixnum] service_project_number
         | 
| 14042 14069 | 
             
                    # @param [String] fields
         | 
| 14043 14070 | 
             
                    #   Selector specifying which fields to include in a partial response.
         | 
| 14044 14071 | 
             
                    # @param [String] quota_user
         | 
| @@ -14058,7 +14085,7 @@ module Google | |
| 14058 14085 | 
             
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 14059 14086 | 
             
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 14060 14087 | 
             
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 14061 | 
            -
                    def aggregated_interconnect_attachment_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 14088 | 
            +
                    def aggregated_interconnect_attachment_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, service_project_number: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 14062 14089 | 
             
                      command = make_simple_command(:get, 'projects/{project}/aggregated/interconnectAttachments', options)
         | 
| 14063 14090 | 
             
                      command.response_representation = Google::Apis::ComputeV1::InterconnectAttachmentAggregatedList::Representation
         | 
| 14064 14091 | 
             
                      command.response_class = Google::Apis::ComputeV1::InterconnectAttachmentAggregatedList
         | 
| @@ -14069,6 +14096,7 @@ module Google | |
| 14069 14096 | 
             
                      command.query['orderBy'] = order_by unless order_by.nil?
         | 
| 14070 14097 | 
             
                      command.query['pageToken'] = page_token unless page_token.nil?
         | 
| 14071 14098 | 
             
                      command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
         | 
| 14099 | 
            +
                      command.query['serviceProjectNumber'] = service_project_number unless service_project_number.nil?
         | 
| 14072 14100 | 
             
                      command.query['fields'] = fields unless fields.nil?
         | 
| 14073 14101 | 
             
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 14074 14102 | 
             
                      command.query['userIp'] = user_ip unless user_ip.nil?
         | 
| @@ -14794,6 +14822,42 @@ module Google | |
| 14794 14822 | 
             
                      execute_or_queue_command(command, &block)
         | 
| 14795 14823 | 
             
                    end
         | 
| 14796 14824 |  | 
| 14825 | 
            +
                    # Returns the interconnectMacsecConfig for the specified Interconnect.
         | 
| 14826 | 
            +
                    # @param [String] project
         | 
| 14827 | 
            +
                    #   Project ID for this request.
         | 
| 14828 | 
            +
                    # @param [String] interconnect
         | 
| 14829 | 
            +
                    #   Name of the interconnect resource to query.
         | 
| 14830 | 
            +
                    # @param [String] fields
         | 
| 14831 | 
            +
                    #   Selector specifying which fields to include in a partial response.
         | 
| 14832 | 
            +
                    # @param [String] quota_user
         | 
| 14833 | 
            +
                    #   Available to use for quota purposes for server-side applications. Can be any
         | 
| 14834 | 
            +
                    #   arbitrary string assigned to a user, but should not exceed 40 characters.
         | 
| 14835 | 
            +
                    # @param [String] user_ip
         | 
| 14836 | 
            +
                    #   Legacy name for parameter that has been superseded by `quotaUser`.
         | 
| 14837 | 
            +
                    # @param [Google::Apis::RequestOptions] options
         | 
| 14838 | 
            +
                    #   Request-specific options
         | 
| 14839 | 
            +
                    #
         | 
| 14840 | 
            +
                    # @yield [result, err] Result & error if block supplied
         | 
| 14841 | 
            +
                    # @yieldparam result [Google::Apis::ComputeV1::InterconnectsGetMacsecConfigResponse] parsed result object
         | 
| 14842 | 
            +
                    # @yieldparam err [StandardError] error object if request failed
         | 
| 14843 | 
            +
                    #
         | 
| 14844 | 
            +
                    # @return [Google::Apis::ComputeV1::InterconnectsGetMacsecConfigResponse]
         | 
| 14845 | 
            +
                    #
         | 
| 14846 | 
            +
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 14847 | 
            +
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 14848 | 
            +
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 14849 | 
            +
                    def get_interconnect_macsec_config(project, interconnect, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 14850 | 
            +
                      command = make_simple_command(:get, 'projects/{project}/global/interconnects/{interconnect}/getMacsecConfig', options)
         | 
| 14851 | 
            +
                      command.response_representation = Google::Apis::ComputeV1::InterconnectsGetMacsecConfigResponse::Representation
         | 
| 14852 | 
            +
                      command.response_class = Google::Apis::ComputeV1::InterconnectsGetMacsecConfigResponse
         | 
| 14853 | 
            +
                      command.params['project'] = project unless project.nil?
         | 
| 14854 | 
            +
                      command.params['interconnect'] = interconnect unless interconnect.nil?
         | 
| 14855 | 
            +
                      command.query['fields'] = fields unless fields.nil?
         | 
| 14856 | 
            +
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 14857 | 
            +
                      command.query['userIp'] = user_ip unless user_ip.nil?
         | 
| 14858 | 
            +
                      execute_or_queue_command(command, &block)
         | 
| 14859 | 
            +
                    end
         | 
| 14860 | 
            +
                    
         | 
| 14797 14861 | 
             
                    # Creates an Interconnect in the specified project using the data included in
         | 
| 14798 14862 | 
             
                    # the request.
         | 
| 14799 14863 | 
             
                    # @param [String] project
         | 
| @@ -15863,6 +15927,7 @@ module Google | |
| 15863 15927 | 
             
                    # @param [Boolean] return_partial_success
         | 
| 15864 15928 | 
             
                    #   Opt-in for partial success behavior which provides partial results in case of
         | 
| 15865 15929 | 
             
                    #   failure. The default value is false.
         | 
| 15930 | 
            +
                    # @param [Fixnum] service_project_number
         | 
| 15866 15931 | 
             
                    # @param [String] fields
         | 
| 15867 15932 | 
             
                    #   Selector specifying which fields to include in a partial response.
         | 
| 15868 15933 | 
             
                    # @param [String] quota_user
         | 
| @@ -15882,7 +15947,7 @@ module Google | |
| 15882 15947 | 
             
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 15883 15948 | 
             
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 15884 15949 | 
             
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 15885 | 
            -
                    def list_aggregated_machine_types(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 15950 | 
            +
                    def list_aggregated_machine_types(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, service_project_number: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 15886 15951 | 
             
                      command = make_simple_command(:get, 'projects/{project}/aggregated/machineTypes', options)
         | 
| 15887 15952 | 
             
                      command.response_representation = Google::Apis::ComputeV1::MachineTypeAggregatedList::Representation
         | 
| 15888 15953 | 
             
                      command.response_class = Google::Apis::ComputeV1::MachineTypeAggregatedList
         | 
| @@ -15893,6 +15958,7 @@ module Google | |
| 15893 15958 | 
             
                      command.query['orderBy'] = order_by unless order_by.nil?
         | 
| 15894 15959 | 
             
                      command.query['pageToken'] = page_token unless page_token.nil?
         | 
| 15895 15960 | 
             
                      command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
         | 
| 15961 | 
            +
                      command.query['serviceProjectNumber'] = service_project_number unless service_project_number.nil?
         | 
| 15896 15962 | 
             
                      command.query['fields'] = fields unless fields.nil?
         | 
| 15897 15963 | 
             
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 15898 15964 | 
             
                      command.query['userIp'] = user_ip unless user_ip.nil?
         | 
| @@ -16092,6 +16158,7 @@ module Google | |
| 16092 16158 | 
             
                    # @param [Boolean] return_partial_success
         | 
| 16093 16159 | 
             
                    #   Opt-in for partial success behavior which provides partial results in case of
         | 
| 16094 16160 | 
             
                    #   failure. The default value is false.
         | 
| 16161 | 
            +
                    # @param [Fixnum] service_project_number
         | 
| 16095 16162 | 
             
                    # @param [String] fields
         | 
| 16096 16163 | 
             
                    #   Selector specifying which fields to include in a partial response.
         | 
| 16097 16164 | 
             
                    # @param [String] quota_user
         | 
| @@ -16111,7 +16178,7 @@ module Google | |
| 16111 16178 | 
             
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 16112 16179 | 
             
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 16113 16180 | 
             
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 16114 | 
            -
                    def aggregated_network_attachment_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 16181 | 
            +
                    def aggregated_network_attachment_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, service_project_number: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 16115 16182 | 
             
                      command = make_simple_command(:get, 'projects/{project}/aggregated/networkAttachments', options)
         | 
| 16116 16183 | 
             
                      command.response_representation = Google::Apis::ComputeV1::NetworkAttachmentAggregatedList::Representation
         | 
| 16117 16184 | 
             
                      command.response_class = Google::Apis::ComputeV1::NetworkAttachmentAggregatedList
         | 
| @@ -16122,6 +16189,7 @@ module Google | |
| 16122 16189 | 
             
                      command.query['orderBy'] = order_by unless order_by.nil?
         | 
| 16123 16190 | 
             
                      command.query['pageToken'] = page_token unless page_token.nil?
         | 
| 16124 16191 | 
             
                      command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
         | 
| 16192 | 
            +
                      command.query['serviceProjectNumber'] = service_project_number unless service_project_number.nil?
         | 
| 16125 16193 | 
             
                      command.query['fields'] = fields unless fields.nil?
         | 
| 16126 16194 | 
             
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 16127 16195 | 
             
                      command.query['userIp'] = user_ip unless user_ip.nil?
         | 
| @@ -16552,6 +16620,7 @@ module Google | |
| 16552 16620 | 
             
                    # @param [Boolean] return_partial_success
         | 
| 16553 16621 | 
             
                    #   Opt-in for partial success behavior which provides partial results in case of
         | 
| 16554 16622 | 
             
                    #   failure. The default value is false.
         | 
| 16623 | 
            +
                    # @param [Fixnum] service_project_number
         | 
| 16555 16624 | 
             
                    # @param [String] fields
         | 
| 16556 16625 | 
             
                    #   Selector specifying which fields to include in a partial response.
         | 
| 16557 16626 | 
             
                    # @param [String] quota_user
         | 
| @@ -16571,7 +16640,7 @@ module Google | |
| 16571 16640 | 
             
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 16572 16641 | 
             
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 16573 16642 | 
             
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 16574 | 
            -
                    def aggregated_network_edge_security_service_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 16643 | 
            +
                    def aggregated_network_edge_security_service_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, service_project_number: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 16575 16644 | 
             
                      command = make_simple_command(:get, 'projects/{project}/aggregated/networkEdgeSecurityServices', options)
         | 
| 16576 16645 | 
             
                      command.response_representation = Google::Apis::ComputeV1::NetworkEdgeSecurityServiceAggregatedList::Representation
         | 
| 16577 16646 | 
             
                      command.response_class = Google::Apis::ComputeV1::NetworkEdgeSecurityServiceAggregatedList
         | 
| @@ -16582,6 +16651,7 @@ module Google | |
| 16582 16651 | 
             
                      command.query['orderBy'] = order_by unless order_by.nil?
         | 
| 16583 16652 | 
             
                      command.query['pageToken'] = page_token unless page_token.nil?
         | 
| 16584 16653 | 
             
                      command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
         | 
| 16654 | 
            +
                      command.query['serviceProjectNumber'] = service_project_number unless service_project_number.nil?
         | 
| 16585 16655 | 
             
                      command.query['fields'] = fields unless fields.nil?
         | 
| 16586 16656 | 
             
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 16587 16657 | 
             
                      command.query['userIp'] = user_ip unless user_ip.nil?
         | 
| @@ -16850,6 +16920,7 @@ module Google | |
| 16850 16920 | 
             
                    # @param [Boolean] return_partial_success
         | 
| 16851 16921 | 
             
                    #   Opt-in for partial success behavior which provides partial results in case of
         | 
| 16852 16922 | 
             
                    #   failure. The default value is false.
         | 
| 16923 | 
            +
                    # @param [Fixnum] service_project_number
         | 
| 16853 16924 | 
             
                    # @param [String] fields
         | 
| 16854 16925 | 
             
                    #   Selector specifying which fields to include in a partial response.
         | 
| 16855 16926 | 
             
                    # @param [String] quota_user
         | 
| @@ -16869,7 +16940,7 @@ module Google | |
| 16869 16940 | 
             
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 16870 16941 | 
             
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 16871 16942 | 
             
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 16872 | 
            -
                    def aggregated_network_endpoint_group_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 16943 | 
            +
                    def aggregated_network_endpoint_group_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, service_project_number: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 16873 16944 | 
             
                      command = make_simple_command(:get, 'projects/{project}/aggregated/networkEndpointGroups', options)
         | 
| 16874 16945 | 
             
                      command.response_representation = Google::Apis::ComputeV1::NetworkEndpointGroupAggregatedList::Representation
         | 
| 16875 16946 | 
             
                      command.response_class = Google::Apis::ComputeV1::NetworkEndpointGroupAggregatedList
         | 
| @@ -16880,6 +16951,7 @@ module Google | |
| 16880 16951 | 
             
                      command.query['orderBy'] = order_by unless order_by.nil?
         | 
| 16881 16952 | 
             
                      command.query['pageToken'] = page_token unless page_token.nil?
         | 
| 16882 16953 | 
             
                      command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
         | 
| 16954 | 
            +
                      command.query['serviceProjectNumber'] = service_project_number unless service_project_number.nil?
         | 
| 16883 16955 | 
             
                      command.query['fields'] = fields unless fields.nil?
         | 
| 16884 16956 | 
             
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 16885 16957 | 
             
                      command.query['userIp'] = user_ip unless user_ip.nil?
         | 
| @@ -18885,6 +18957,7 @@ module Google | |
| 18885 18957 | 
             
                    # @param [Boolean] return_partial_success
         | 
| 18886 18958 | 
             
                    #   Opt-in for partial success behavior which provides partial results in case of
         | 
| 18887 18959 | 
             
                    #   failure. The default value is false.
         | 
| 18960 | 
            +
                    # @param [Fixnum] service_project_number
         | 
| 18888 18961 | 
             
                    # @param [String] fields
         | 
| 18889 18962 | 
             
                    #   Selector specifying which fields to include in a partial response.
         | 
| 18890 18963 | 
             
                    # @param [String] quota_user
         | 
| @@ -18904,7 +18977,7 @@ module Google | |
| 18904 18977 | 
             
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 18905 18978 | 
             
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 18906 18979 | 
             
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 18907 | 
            -
                    def aggregated_node_group_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 18980 | 
            +
                    def aggregated_node_group_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, service_project_number: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 18908 18981 | 
             
                      command = make_simple_command(:get, 'projects/{project}/aggregated/nodeGroups', options)
         | 
| 18909 18982 | 
             
                      command.response_representation = Google::Apis::ComputeV1::NodeGroupAggregatedList::Representation
         | 
| 18910 18983 | 
             
                      command.response_class = Google::Apis::ComputeV1::NodeGroupAggregatedList
         | 
| @@ -18915,6 +18988,7 @@ module Google | |
| 18915 18988 | 
             
                      command.query['orderBy'] = order_by unless order_by.nil?
         | 
| 18916 18989 | 
             
                      command.query['pageToken'] = page_token unless page_token.nil?
         | 
| 18917 18990 | 
             
                      command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
         | 
| 18991 | 
            +
                      command.query['serviceProjectNumber'] = service_project_number unless service_project_number.nil?
         | 
| 18918 18992 | 
             
                      command.query['fields'] = fields unless fields.nil?
         | 
| 18919 18993 | 
             
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 18920 18994 | 
             
                      command.query['userIp'] = user_ip unless user_ip.nil?
         | 
| @@ -19656,6 +19730,7 @@ module Google | |
| 19656 19730 | 
             
                    # @param [Boolean] return_partial_success
         | 
| 19657 19731 | 
             
                    #   Opt-in for partial success behavior which provides partial results in case of
         | 
| 19658 19732 | 
             
                    #   failure. The default value is false.
         | 
| 19733 | 
            +
                    # @param [Fixnum] service_project_number
         | 
| 19659 19734 | 
             
                    # @param [String] fields
         | 
| 19660 19735 | 
             
                    #   Selector specifying which fields to include in a partial response.
         | 
| 19661 19736 | 
             
                    # @param [String] quota_user
         | 
| @@ -19675,7 +19750,7 @@ module Google | |
| 19675 19750 | 
             
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 19676 19751 | 
             
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 19677 19752 | 
             
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 19678 | 
            -
                    def aggregated_node_template_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 19753 | 
            +
                    def aggregated_node_template_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, service_project_number: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 19679 19754 | 
             
                      command = make_simple_command(:get, 'projects/{project}/aggregated/nodeTemplates', options)
         | 
| 19680 19755 | 
             
                      command.response_representation = Google::Apis::ComputeV1::NodeTemplateAggregatedList::Representation
         | 
| 19681 19756 | 
             
                      command.response_class = Google::Apis::ComputeV1::NodeTemplateAggregatedList
         | 
| @@ -19686,6 +19761,7 @@ module Google | |
| 19686 19761 | 
             
                      command.query['orderBy'] = order_by unless order_by.nil?
         | 
| 19687 19762 | 
             
                      command.query['pageToken'] = page_token unless page_token.nil?
         | 
| 19688 19763 | 
             
                      command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
         | 
| 19764 | 
            +
                      command.query['serviceProjectNumber'] = service_project_number unless service_project_number.nil?
         | 
| 19689 19765 | 
             
                      command.query['fields'] = fields unless fields.nil?
         | 
| 19690 19766 | 
             
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 19691 19767 | 
             
                      command.query['userIp'] = user_ip unless user_ip.nil?
         | 
| @@ -20113,6 +20189,7 @@ module Google | |
| 20113 20189 | 
             
                    # @param [Boolean] return_partial_success
         | 
| 20114 20190 | 
             
                    #   Opt-in for partial success behavior which provides partial results in case of
         | 
| 20115 20191 | 
             
                    #   failure. The default value is false.
         | 
| 20192 | 
            +
                    # @param [Fixnum] service_project_number
         | 
| 20116 20193 | 
             
                    # @param [String] fields
         | 
| 20117 20194 | 
             
                    #   Selector specifying which fields to include in a partial response.
         | 
| 20118 20195 | 
             
                    # @param [String] quota_user
         | 
| @@ -20132,7 +20209,7 @@ module Google | |
| 20132 20209 | 
             
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 20133 20210 | 
             
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 20134 20211 | 
             
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 20135 | 
            -
                    def aggregated_node_type_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 20212 | 
            +
                    def aggregated_node_type_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, service_project_number: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 20136 20213 | 
             
                      command = make_simple_command(:get, 'projects/{project}/aggregated/nodeTypes', options)
         | 
| 20137 20214 | 
             
                      command.response_representation = Google::Apis::ComputeV1::NodeTypeAggregatedList::Representation
         | 
| 20138 20215 | 
             
                      command.response_class = Google::Apis::ComputeV1::NodeTypeAggregatedList
         | 
| @@ -20143,6 +20220,7 @@ module Google | |
| 20143 20220 | 
             
                      command.query['orderBy'] = order_by unless order_by.nil?
         | 
| 20144 20221 | 
             
                      command.query['pageToken'] = page_token unless page_token.nil?
         | 
| 20145 20222 | 
             
                      command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
         | 
| 20223 | 
            +
                      command.query['serviceProjectNumber'] = service_project_number unless service_project_number.nil?
         | 
| 20146 20224 | 
             
                      command.query['fields'] = fields unless fields.nil?
         | 
| 20147 20225 | 
             
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 20148 20226 | 
             
                      command.query['userIp'] = user_ip unless user_ip.nil?
         | 
| @@ -20341,6 +20419,7 @@ module Google | |
| 20341 20419 | 
             
                    # @param [Boolean] return_partial_success
         | 
| 20342 20420 | 
             
                    #   Opt-in for partial success behavior which provides partial results in case of
         | 
| 20343 20421 | 
             
                    #   failure. The default value is false.
         | 
| 20422 | 
            +
                    # @param [Fixnum] service_project_number
         | 
| 20344 20423 | 
             
                    # @param [String] fields
         | 
| 20345 20424 | 
             
                    #   Selector specifying which fields to include in a partial response.
         | 
| 20346 20425 | 
             
                    # @param [String] quota_user
         | 
| @@ -20360,7 +20439,7 @@ module Google | |
| 20360 20439 | 
             
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 20361 20440 | 
             
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 20362 20441 | 
             
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 20363 | 
            -
                    def aggregated_packet_mirroring_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 20442 | 
            +
                    def aggregated_packet_mirroring_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, service_project_number: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 20364 20443 | 
             
                      command = make_simple_command(:get, 'projects/{project}/aggregated/packetMirrorings', options)
         | 
| 20365 20444 | 
             
                      command.response_representation = Google::Apis::ComputeV1::PacketMirroringAggregatedList::Representation
         | 
| 20366 20445 | 
             
                      command.response_class = Google::Apis::ComputeV1::PacketMirroringAggregatedList
         | 
| @@ -20371,6 +20450,7 @@ module Google | |
| 20371 20450 | 
             
                      command.query['orderBy'] = order_by unless order_by.nil?
         | 
| 20372 20451 | 
             
                      command.query['pageToken'] = page_token unless page_token.nil?
         | 
| 20373 20452 | 
             
                      command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
         | 
| 20453 | 
            +
                      command.query['serviceProjectNumber'] = service_project_number unless service_project_number.nil?
         | 
| 20374 20454 | 
             
                      command.query['fields'] = fields unless fields.nil?
         | 
| 20375 20455 | 
             
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 20376 20456 | 
             
                      command.query['userIp'] = user_ip unless user_ip.nil?
         | 
| @@ -21726,6 +21806,7 @@ module Google | |
| 21726 21806 | 
             
                    # @param [Boolean] return_partial_success
         | 
| 21727 21807 | 
             
                    #   Opt-in for partial success behavior which provides partial results in case of
         | 
| 21728 21808 | 
             
                    #   failure. The default value is false.
         | 
| 21809 | 
            +
                    # @param [Fixnum] service_project_number
         | 
| 21729 21810 | 
             
                    # @param [String] fields
         | 
| 21730 21811 | 
             
                    #   Selector specifying which fields to include in a partial response.
         | 
| 21731 21812 | 
             
                    # @param [String] quota_user
         | 
| @@ -21745,7 +21826,7 @@ module Google | |
| 21745 21826 | 
             
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 21746 21827 | 
             
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 21747 21828 | 
             
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 21748 | 
            -
                    def aggregated_public_delegated_prefix_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 21829 | 
            +
                    def aggregated_public_delegated_prefix_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, service_project_number: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 21749 21830 | 
             
                      command = make_simple_command(:get, 'projects/{project}/aggregated/publicDelegatedPrefixes', options)
         | 
| 21750 21831 | 
             
                      command.response_representation = Google::Apis::ComputeV1::PublicDelegatedPrefixAggregatedList::Representation
         | 
| 21751 21832 | 
             
                      command.response_class = Google::Apis::ComputeV1::PublicDelegatedPrefixAggregatedList
         | 
| @@ -21756,6 +21837,7 @@ module Google | |
| 21756 21837 | 
             
                      command.query['orderBy'] = order_by unless order_by.nil?
         | 
| 21757 21838 | 
             
                      command.query['pageToken'] = page_token unless page_token.nil?
         | 
| 21758 21839 | 
             
                      command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
         | 
| 21840 | 
            +
                      command.query['serviceProjectNumber'] = service_project_number unless service_project_number.nil?
         | 
| 21759 21841 | 
             
                      command.query['fields'] = fields unless fields.nil?
         | 
| 21760 21842 | 
             
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 21761 21843 | 
             
                      command.query['userIp'] = user_ip unless user_ip.nil?
         | 
| @@ -22977,6 +23059,7 @@ module Google | |
| 22977 23059 | 
             
                    # @param [Boolean] return_partial_success
         | 
| 22978 23060 | 
             
                    #   Opt-in for partial success behavior which provides partial results in case of
         | 
| 22979 23061 | 
             
                    #   failure. The default value is false.
         | 
| 23062 | 
            +
                    # @param [Fixnum] service_project_number
         | 
| 22980 23063 | 
             
                    # @param [String] fields
         | 
| 22981 23064 | 
             
                    #   Selector specifying which fields to include in a partial response.
         | 
| 22982 23065 | 
             
                    # @param [String] quota_user
         | 
| @@ -22996,7 +23079,7 @@ module Google | |
| 22996 23079 | 
             
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 22997 23080 | 
             
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 22998 23081 | 
             
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 22999 | 
            -
                    def aggregated_region_commitment_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 23082 | 
            +
                    def aggregated_region_commitment_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, service_project_number: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 23000 23083 | 
             
                      command = make_simple_command(:get, 'projects/{project}/aggregated/commitments', options)
         | 
| 23001 23084 | 
             
                      command.response_representation = Google::Apis::ComputeV1::CommitmentAggregatedList::Representation
         | 
| 23002 23085 | 
             
                      command.response_class = Google::Apis::ComputeV1::CommitmentAggregatedList
         | 
| @@ -23007,6 +23090,7 @@ module Google | |
| 23007 23090 | 
             
                      command.query['orderBy'] = order_by unless order_by.nil?
         | 
| 23008 23091 | 
             
                      command.query['pageToken'] = page_token unless page_token.nil?
         | 
| 23009 23092 | 
             
                      command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
         | 
| 23093 | 
            +
                      command.query['serviceProjectNumber'] = service_project_number unless service_project_number.nil?
         | 
| 23010 23094 | 
             
                      command.query['fields'] = fields unless fields.nil?
         | 
| 23011 23095 | 
             
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 23012 23096 | 
             
                      command.query['userIp'] = user_ip unless user_ip.nil?
         | 
| @@ -26695,6 +26779,61 @@ module Google | |
| 26695 26779 | 
             
                      execute_or_queue_command(command, &block)
         | 
| 26696 26780 | 
             
                    end
         | 
| 26697 26781 |  | 
| 26782 | 
            +
                    # Attach a list of network endpoints to the specified network endpoint group.
         | 
| 26783 | 
            +
                    # @param [String] project
         | 
| 26784 | 
            +
                    #   Project ID for this request.
         | 
| 26785 | 
            +
                    # @param [String] region
         | 
| 26786 | 
            +
                    #   The name of the region where you want to create the network endpoint group. It
         | 
| 26787 | 
            +
                    #   should comply with RFC1035.
         | 
| 26788 | 
            +
                    # @param [String] network_endpoint_group
         | 
| 26789 | 
            +
                    #   The name of the network endpoint group where you are attaching network
         | 
| 26790 | 
            +
                    #   endpoints to. It should comply with RFC1035.
         | 
| 26791 | 
            +
                    # @param [Google::Apis::ComputeV1::RegionNetworkEndpointGroupsAttachEndpointsRequest] region_network_endpoint_groups_attach_endpoints_request_object
         | 
| 26792 | 
            +
                    # @param [String] request_id
         | 
| 26793 | 
            +
                    #   An optional request ID to identify requests. Specify a unique request ID so
         | 
| 26794 | 
            +
                    #   that if you must retry your request, the server will know to ignore the
         | 
| 26795 | 
            +
                    #   request if it has already been completed. For example, consider a situation
         | 
| 26796 | 
            +
                    #   where you make an initial request and the request times out. If you make the
         | 
| 26797 | 
            +
                    #   request again with the same request ID, the server can check if original
         | 
| 26798 | 
            +
                    #   operation with the same request ID was received, and if so, will ignore the
         | 
| 26799 | 
            +
                    #   second request. This prevents clients from accidentally creating duplicate
         | 
| 26800 | 
            +
                    #   commitments. The request ID must be a valid UUID with the exception that zero
         | 
| 26801 | 
            +
                    #   UUID is not supported ( 00000000-0000-0000-0000-000000000000).
         | 
| 26802 | 
            +
                    # @param [String] fields
         | 
| 26803 | 
            +
                    #   Selector specifying which fields to include in a partial response.
         | 
| 26804 | 
            +
                    # @param [String] quota_user
         | 
| 26805 | 
            +
                    #   Available to use for quota purposes for server-side applications. Can be any
         | 
| 26806 | 
            +
                    #   arbitrary string assigned to a user, but should not exceed 40 characters.
         | 
| 26807 | 
            +
                    # @param [String] user_ip
         | 
| 26808 | 
            +
                    #   Legacy name for parameter that has been superseded by `quotaUser`.
         | 
| 26809 | 
            +
                    # @param [Google::Apis::RequestOptions] options
         | 
| 26810 | 
            +
                    #   Request-specific options
         | 
| 26811 | 
            +
                    #
         | 
| 26812 | 
            +
                    # @yield [result, err] Result & error if block supplied
         | 
| 26813 | 
            +
                    # @yieldparam result [Google::Apis::ComputeV1::Operation] parsed result object
         | 
| 26814 | 
            +
                    # @yieldparam err [StandardError] error object if request failed
         | 
| 26815 | 
            +
                    #
         | 
| 26816 | 
            +
                    # @return [Google::Apis::ComputeV1::Operation]
         | 
| 26817 | 
            +
                    #
         | 
| 26818 | 
            +
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 26819 | 
            +
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 26820 | 
            +
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 26821 | 
            +
                    def attach_region_network_endpoint_group_network_endpoints(project, region, network_endpoint_group, region_network_endpoint_groups_attach_endpoints_request_object = nil, request_id: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 26822 | 
            +
                      command = make_simple_command(:post, 'projects/{project}/regions/{region}/networkEndpointGroups/{networkEndpointGroup}/attachNetworkEndpoints', options)
         | 
| 26823 | 
            +
                      command.request_representation = Google::Apis::ComputeV1::RegionNetworkEndpointGroupsAttachEndpointsRequest::Representation
         | 
| 26824 | 
            +
                      command.request_object = region_network_endpoint_groups_attach_endpoints_request_object
         | 
| 26825 | 
            +
                      command.response_representation = Google::Apis::ComputeV1::Operation::Representation
         | 
| 26826 | 
            +
                      command.response_class = Google::Apis::ComputeV1::Operation
         | 
| 26827 | 
            +
                      command.params['project'] = project unless project.nil?
         | 
| 26828 | 
            +
                      command.params['region'] = region unless region.nil?
         | 
| 26829 | 
            +
                      command.params['networkEndpointGroup'] = network_endpoint_group unless network_endpoint_group.nil?
         | 
| 26830 | 
            +
                      command.query['requestId'] = request_id unless request_id.nil?
         | 
| 26831 | 
            +
                      command.query['fields'] = fields unless fields.nil?
         | 
| 26832 | 
            +
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 26833 | 
            +
                      command.query['userIp'] = user_ip unless user_ip.nil?
         | 
| 26834 | 
            +
                      execute_or_queue_command(command, &block)
         | 
| 26835 | 
            +
                    end
         | 
| 26836 | 
            +
                    
         | 
| 26698 26837 | 
             
                    # Deletes the specified network endpoint group. Note that the NEG cannot be
         | 
| 26699 26838 | 
             
                    # deleted if it is configured as a backend of a backend service.
         | 
| 26700 26839 | 
             
                    # @param [String] project
         | 
| @@ -26748,6 +26887,62 @@ module Google | |
| 26748 26887 | 
             
                      execute_or_queue_command(command, &block)
         | 
| 26749 26888 | 
             
                    end
         | 
| 26750 26889 |  | 
| 26890 | 
            +
                    # Detach the network endpoint from the specified network endpoint group.
         | 
| 26891 | 
            +
                    # @param [String] project
         | 
| 26892 | 
            +
                    #   Project ID for this request.
         | 
| 26893 | 
            +
                    # @param [String] region
         | 
| 26894 | 
            +
                    #   The name of the region where the network endpoint group is located. It should
         | 
| 26895 | 
            +
                    #   comply with RFC1035.
         | 
| 26896 | 
            +
                    # @param [String] network_endpoint_group
         | 
| 26897 | 
            +
                    #   The name of the network endpoint group you are detaching network endpoints
         | 
| 26898 | 
            +
                    #   from. It should comply with RFC1035.
         | 
| 26899 | 
            +
                    # @param [Google::Apis::ComputeV1::RegionNetworkEndpointGroupsDetachEndpointsRequest] region_network_endpoint_groups_detach_endpoints_request_object
         | 
| 26900 | 
            +
                    # @param [String] request_id
         | 
| 26901 | 
            +
                    #   An optional request ID to identify requests. Specify a unique request ID so
         | 
| 26902 | 
            +
                    #   that if you must retry your request, the server will know to ignore the
         | 
| 26903 | 
            +
                    #   request if it has already been completed. For example, consider a situation
         | 
| 26904 | 
            +
                    #   where you make an initial request and the request times out. If you make the
         | 
| 26905 | 
            +
                    #   request again with the same request ID, the server can check if original
         | 
| 26906 | 
            +
                    #   operation with the same request ID was received, and if so, will ignore the
         | 
| 26907 | 
            +
                    #   second request. This prevents clients from accidentally creating duplicate
         | 
| 26908 | 
            +
                    #   commitments. The request ID must be a valid UUID with the exception that zero
         | 
| 26909 | 
            +
                    #   UUID is not supported ( 00000000-0000-0000-0000-000000000000). end_interface:
         | 
| 26910 | 
            +
                    #   MixerMutationRequestBuilder
         | 
| 26911 | 
            +
                    # @param [String] fields
         | 
| 26912 | 
            +
                    #   Selector specifying which fields to include in a partial response.
         | 
| 26913 | 
            +
                    # @param [String] quota_user
         | 
| 26914 | 
            +
                    #   Available to use for quota purposes for server-side applications. Can be any
         | 
| 26915 | 
            +
                    #   arbitrary string assigned to a user, but should not exceed 40 characters.
         | 
| 26916 | 
            +
                    # @param [String] user_ip
         | 
| 26917 | 
            +
                    #   Legacy name for parameter that has been superseded by `quotaUser`.
         | 
| 26918 | 
            +
                    # @param [Google::Apis::RequestOptions] options
         | 
| 26919 | 
            +
                    #   Request-specific options
         | 
| 26920 | 
            +
                    #
         | 
| 26921 | 
            +
                    # @yield [result, err] Result & error if block supplied
         | 
| 26922 | 
            +
                    # @yieldparam result [Google::Apis::ComputeV1::Operation] parsed result object
         | 
| 26923 | 
            +
                    # @yieldparam err [StandardError] error object if request failed
         | 
| 26924 | 
            +
                    #
         | 
| 26925 | 
            +
                    # @return [Google::Apis::ComputeV1::Operation]
         | 
| 26926 | 
            +
                    #
         | 
| 26927 | 
            +
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 26928 | 
            +
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 26929 | 
            +
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 26930 | 
            +
                    def detach_region_network_endpoint_group_network_endpoints(project, region, network_endpoint_group, region_network_endpoint_groups_detach_endpoints_request_object = nil, request_id: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 26931 | 
            +
                      command = make_simple_command(:post, 'projects/{project}/regions/{region}/networkEndpointGroups/{networkEndpointGroup}/detachNetworkEndpoints', options)
         | 
| 26932 | 
            +
                      command.request_representation = Google::Apis::ComputeV1::RegionNetworkEndpointGroupsDetachEndpointsRequest::Representation
         | 
| 26933 | 
            +
                      command.request_object = region_network_endpoint_groups_detach_endpoints_request_object
         | 
| 26934 | 
            +
                      command.response_representation = Google::Apis::ComputeV1::Operation::Representation
         | 
| 26935 | 
            +
                      command.response_class = Google::Apis::ComputeV1::Operation
         | 
| 26936 | 
            +
                      command.params['project'] = project unless project.nil?
         | 
| 26937 | 
            +
                      command.params['region'] = region unless region.nil?
         | 
| 26938 | 
            +
                      command.params['networkEndpointGroup'] = network_endpoint_group unless network_endpoint_group.nil?
         | 
| 26939 | 
            +
                      command.query['requestId'] = request_id unless request_id.nil?
         | 
| 26940 | 
            +
                      command.query['fields'] = fields unless fields.nil?
         | 
| 26941 | 
            +
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 26942 | 
            +
                      command.query['userIp'] = user_ip unless user_ip.nil?
         | 
| 26943 | 
            +
                      execute_or_queue_command(command, &block)
         | 
| 26944 | 
            +
                    end
         | 
| 26945 | 
            +
                    
         | 
| 26751 26946 | 
             
                    # Returns the specified network endpoint group.
         | 
| 26752 26947 | 
             
                    # @param [String] project
         | 
| 26753 26948 | 
             
                    #   Project ID for this request.
         | 
| @@ -26934,6 +27129,103 @@ module Google | |
| 26934 27129 | 
             
                      execute_or_queue_command(command, &block)
         | 
| 26935 27130 | 
             
                    end
         | 
| 26936 27131 |  | 
| 27132 | 
            +
                    # Lists the network endpoints in the specified network endpoint group.
         | 
| 27133 | 
            +
                    # @param [String] project
         | 
| 27134 | 
            +
                    #   Project ID for this request.
         | 
| 27135 | 
            +
                    # @param [String] region
         | 
| 27136 | 
            +
                    #   The name of the region where the network endpoint group is located. It should
         | 
| 27137 | 
            +
                    #   comply with RFC1035.
         | 
| 27138 | 
            +
                    # @param [String] network_endpoint_group
         | 
| 27139 | 
            +
                    #   The name of the network endpoint group from which you want to generate a list
         | 
| 27140 | 
            +
                    #   of included network endpoints. It should comply with RFC1035.
         | 
| 27141 | 
            +
                    # @param [String] filter
         | 
| 27142 | 
            +
                    #   A filter expression that filters resources listed in the response. Most
         | 
| 27143 | 
            +
                    #   Compute resources support two types of filter expressions: expressions that
         | 
| 27144 | 
            +
                    #   support regular expressions and expressions that follow API improvement
         | 
| 27145 | 
            +
                    #   proposal AIP-160. These two types of filter expressions cannot be mixed in one
         | 
| 27146 | 
            +
                    #   request. If you want to use AIP-160, your expression must specify the field
         | 
| 27147 | 
            +
                    #   name, an operator, and the value that you want to use for filtering. The value
         | 
| 27148 | 
            +
                    #   must be a string, a number, or a boolean. The operator must be either `=`, `!=`
         | 
| 27149 | 
            +
                    #   , `>`, `<`, `<=`, `>=` or `:`. For example, if you are filtering Compute
         | 
| 27150 | 
            +
                    #   Engine instances, you can exclude instances named `example-instance` by
         | 
| 27151 | 
            +
                    #   specifying `name != example-instance`. The `:*` comparison can be used to test
         | 
| 27152 | 
            +
                    #   whether a key has been defined. For example, to find all objects with `owner`
         | 
| 27153 | 
            +
                    #   label use: ``` labels.owner:* ``` You can also filter nested fields. For
         | 
| 27154 | 
            +
                    #   example, you could specify `scheduling.automaticRestart = false` to include
         | 
| 27155 | 
            +
                    #   instances only if they are not scheduled for automatic restarts. You can use
         | 
| 27156 | 
            +
                    #   filtering on nested fields to filter based on resource labels. To filter on
         | 
| 27157 | 
            +
                    #   multiple expressions, provide each separate expression within parentheses. For
         | 
| 27158 | 
            +
                    #   example: ``` (scheduling.automaticRestart = true) (cpuPlatform = "Intel
         | 
| 27159 | 
            +
                    #   Skylake") ``` By default, each expression is an `AND` expression. However, you
         | 
| 27160 | 
            +
                    #   can include `AND` and `OR` expressions explicitly. For example: ``` (
         | 
| 27161 | 
            +
                    #   cpuPlatform = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND (
         | 
| 27162 | 
            +
                    #   scheduling.automaticRestart = true) ``` If you want to use a regular
         | 
| 27163 | 
            +
                    #   expression, use the `eq` (equal) or `ne` (not equal) operator against a single
         | 
| 27164 | 
            +
                    #   un-parenthesized expression with or without quotes or against multiple
         | 
| 27165 | 
            +
                    #   parenthesized expressions. Examples: `fieldname eq unquoted literal` `
         | 
| 27166 | 
            +
                    #   fieldname eq 'single quoted literal'` `fieldname eq "double quoted literal"` `(
         | 
| 27167 | 
            +
                    #   fieldname1 eq literal) (fieldname2 ne "literal")` The literal value is
         | 
| 27168 | 
            +
                    #   interpreted as a regular expression using Google RE2 library syntax. The
         | 
| 27169 | 
            +
                    #   literal value must match the entire field. For example, to filter for
         | 
| 27170 | 
            +
                    #   instances that do not end with name "instance", you would use `name ne .*
         | 
| 27171 | 
            +
                    #   instance`. You cannot combine constraints on multiple fields using regular
         | 
| 27172 | 
            +
                    #   expressions.
         | 
| 27173 | 
            +
                    # @param [Fixnum] max_results
         | 
| 27174 | 
            +
                    #   The maximum number of results per page that should be returned. If the number
         | 
| 27175 | 
            +
                    #   of available results is larger than `maxResults`, Compute Engine returns a `
         | 
| 27176 | 
            +
                    #   nextPageToken` that can be used to get the next page of results in subsequent
         | 
| 27177 | 
            +
                    #   list requests. Acceptable values are `0` to `500`, inclusive. (Default: `500`)
         | 
| 27178 | 
            +
                    # @param [String] order_by
         | 
| 27179 | 
            +
                    #   Sorts list results by a certain order. By default, results are returned in
         | 
| 27180 | 
            +
                    #   alphanumerical order based on the resource name. You can also sort results in
         | 
| 27181 | 
            +
                    #   descending order based on the creation timestamp using `orderBy="
         | 
| 27182 | 
            +
                    #   creationTimestamp desc"`. This sorts results based on the `creationTimestamp`
         | 
| 27183 | 
            +
                    #   field in reverse chronological order (newest result first). Use this to sort
         | 
| 27184 | 
            +
                    #   resources like operations so that the newest operation is returned first.
         | 
| 27185 | 
            +
                    #   Currently, only sorting by `name` or `creationTimestamp desc` is supported.
         | 
| 27186 | 
            +
                    # @param [String] page_token
         | 
| 27187 | 
            +
                    #   Specifies a page token to use. Set `pageToken` to the `nextPageToken` returned
         | 
| 27188 | 
            +
                    #   by a previous list request to get the next page of results.
         | 
| 27189 | 
            +
                    # @param [Boolean] return_partial_success
         | 
| 27190 | 
            +
                    #   Opt-in for partial success behavior which provides partial results in case of
         | 
| 27191 | 
            +
                    #   failure. The default value is false.
         | 
| 27192 | 
            +
                    # @param [String] fields
         | 
| 27193 | 
            +
                    #   Selector specifying which fields to include in a partial response.
         | 
| 27194 | 
            +
                    # @param [String] quota_user
         | 
| 27195 | 
            +
                    #   Available to use for quota purposes for server-side applications. Can be any
         | 
| 27196 | 
            +
                    #   arbitrary string assigned to a user, but should not exceed 40 characters.
         | 
| 27197 | 
            +
                    # @param [String] user_ip
         | 
| 27198 | 
            +
                    #   Legacy name for parameter that has been superseded by `quotaUser`.
         | 
| 27199 | 
            +
                    # @param [Google::Apis::RequestOptions] options
         | 
| 27200 | 
            +
                    #   Request-specific options
         | 
| 27201 | 
            +
                    #
         | 
| 27202 | 
            +
                    # @yield [result, err] Result & error if block supplied
         | 
| 27203 | 
            +
                    # @yieldparam result [Google::Apis::ComputeV1::NetworkEndpointGroupsListNetworkEndpoints] parsed result object
         | 
| 27204 | 
            +
                    # @yieldparam err [StandardError] error object if request failed
         | 
| 27205 | 
            +
                    #
         | 
| 27206 | 
            +
                    # @return [Google::Apis::ComputeV1::NetworkEndpointGroupsListNetworkEndpoints]
         | 
| 27207 | 
            +
                    #
         | 
| 27208 | 
            +
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 27209 | 
            +
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 27210 | 
            +
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 27211 | 
            +
                    def list_region_network_endpoint_group_network_endpoints(project, region, network_endpoint_group, filter: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 27212 | 
            +
                      command = make_simple_command(:post, 'projects/{project}/regions/{region}/networkEndpointGroups/{networkEndpointGroup}/listNetworkEndpoints', options)
         | 
| 27213 | 
            +
                      command.response_representation = Google::Apis::ComputeV1::NetworkEndpointGroupsListNetworkEndpoints::Representation
         | 
| 27214 | 
            +
                      command.response_class = Google::Apis::ComputeV1::NetworkEndpointGroupsListNetworkEndpoints
         | 
| 27215 | 
            +
                      command.params['project'] = project unless project.nil?
         | 
| 27216 | 
            +
                      command.params['region'] = region unless region.nil?
         | 
| 27217 | 
            +
                      command.params['networkEndpointGroup'] = network_endpoint_group unless network_endpoint_group.nil?
         | 
| 27218 | 
            +
                      command.query['filter'] = filter unless filter.nil?
         | 
| 27219 | 
            +
                      command.query['maxResults'] = max_results unless max_results.nil?
         | 
| 27220 | 
            +
                      command.query['orderBy'] = order_by unless order_by.nil?
         | 
| 27221 | 
            +
                      command.query['pageToken'] = page_token unless page_token.nil?
         | 
| 27222 | 
            +
                      command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
         | 
| 27223 | 
            +
                      command.query['fields'] = fields unless fields.nil?
         | 
| 27224 | 
            +
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 27225 | 
            +
                      command.query['userIp'] = user_ip unless user_ip.nil?
         | 
| 27226 | 
            +
                      execute_or_queue_command(command, &block)
         | 
| 27227 | 
            +
                    end
         | 
| 27228 | 
            +
                    
         | 
| 26937 27229 | 
             
                    # Inserts an association for the specified network firewall policy.
         | 
| 26938 27230 | 
             
                    # @param [String] project
         | 
| 26939 27231 | 
             
                    #   Project ID for this request.
         | 
| @@ -28252,6 +28544,51 @@ module Google | |
| 28252 28544 | 
             
                      execute_or_queue_command(command, &block)
         | 
| 28253 28545 | 
             
                    end
         | 
| 28254 28546 |  | 
| 28547 | 
            +
                    # Inserts a rule into a security policy.
         | 
| 28548 | 
            +
                    # @param [String] project
         | 
| 28549 | 
            +
                    #   Project ID for this request.
         | 
| 28550 | 
            +
                    # @param [String] region
         | 
| 28551 | 
            +
                    #   Name of the region scoping this request.
         | 
| 28552 | 
            +
                    # @param [String] security_policy
         | 
| 28553 | 
            +
                    #   Name of the security policy to update.
         | 
| 28554 | 
            +
                    # @param [Google::Apis::ComputeV1::SecurityPolicyRule] security_policy_rule_object
         | 
| 28555 | 
            +
                    # @param [Boolean] validate_only
         | 
| 28556 | 
            +
                    #   If true, the request will not be committed.
         | 
| 28557 | 
            +
                    # @param [String] fields
         | 
| 28558 | 
            +
                    #   Selector specifying which fields to include in a partial response.
         | 
| 28559 | 
            +
                    # @param [String] quota_user
         | 
| 28560 | 
            +
                    #   Available to use for quota purposes for server-side applications. Can be any
         | 
| 28561 | 
            +
                    #   arbitrary string assigned to a user, but should not exceed 40 characters.
         | 
| 28562 | 
            +
                    # @param [String] user_ip
         | 
| 28563 | 
            +
                    #   Legacy name for parameter that has been superseded by `quotaUser`.
         | 
| 28564 | 
            +
                    # @param [Google::Apis::RequestOptions] options
         | 
| 28565 | 
            +
                    #   Request-specific options
         | 
| 28566 | 
            +
                    #
         | 
| 28567 | 
            +
                    # @yield [result, err] Result & error if block supplied
         | 
| 28568 | 
            +
                    # @yieldparam result [Google::Apis::ComputeV1::Operation] parsed result object
         | 
| 28569 | 
            +
                    # @yieldparam err [StandardError] error object if request failed
         | 
| 28570 | 
            +
                    #
         | 
| 28571 | 
            +
                    # @return [Google::Apis::ComputeV1::Operation]
         | 
| 28572 | 
            +
                    #
         | 
| 28573 | 
            +
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 28574 | 
            +
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 28575 | 
            +
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 28576 | 
            +
                    def add_region_security_policy_rule(project, region, security_policy, security_policy_rule_object = nil, validate_only: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 28577 | 
            +
                      command = make_simple_command(:post, 'projects/{project}/regions/{region}/securityPolicies/{securityPolicy}/addRule', options)
         | 
| 28578 | 
            +
                      command.request_representation = Google::Apis::ComputeV1::SecurityPolicyRule::Representation
         | 
| 28579 | 
            +
                      command.request_object = security_policy_rule_object
         | 
| 28580 | 
            +
                      command.response_representation = Google::Apis::ComputeV1::Operation::Representation
         | 
| 28581 | 
            +
                      command.response_class = Google::Apis::ComputeV1::Operation
         | 
| 28582 | 
            +
                      command.params['project'] = project unless project.nil?
         | 
| 28583 | 
            +
                      command.params['region'] = region unless region.nil?
         | 
| 28584 | 
            +
                      command.params['securityPolicy'] = security_policy unless security_policy.nil?
         | 
| 28585 | 
            +
                      command.query['validateOnly'] = validate_only unless validate_only.nil?
         | 
| 28586 | 
            +
                      command.query['fields'] = fields unless fields.nil?
         | 
| 28587 | 
            +
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 28588 | 
            +
                      command.query['userIp'] = user_ip unless user_ip.nil?
         | 
| 28589 | 
            +
                      execute_or_queue_command(command, &block)
         | 
| 28590 | 
            +
                    end
         | 
| 28591 | 
            +
                    
         | 
| 28255 28592 | 
             
                    # Deletes the specified policy.
         | 
| 28256 28593 | 
             
                    # @param [String] project
         | 
| 28257 28594 | 
             
                    #   Project ID for this request.
         | 
| @@ -28341,6 +28678,48 @@ module Google | |
| 28341 28678 | 
             
                      execute_or_queue_command(command, &block)
         | 
| 28342 28679 | 
             
                    end
         | 
| 28343 28680 |  | 
| 28681 | 
            +
                    # Gets a rule at the specified priority.
         | 
| 28682 | 
            +
                    # @param [String] project
         | 
| 28683 | 
            +
                    #   Project ID for this request.
         | 
| 28684 | 
            +
                    # @param [String] region
         | 
| 28685 | 
            +
                    #   Name of the region scoping this request.
         | 
| 28686 | 
            +
                    # @param [String] security_policy
         | 
| 28687 | 
            +
                    #   Name of the security policy to which the queried rule belongs.
         | 
| 28688 | 
            +
                    # @param [Fixnum] priority
         | 
| 28689 | 
            +
                    #   The priority of the rule to get from the security policy.
         | 
| 28690 | 
            +
                    # @param [String] fields
         | 
| 28691 | 
            +
                    #   Selector specifying which fields to include in a partial response.
         | 
| 28692 | 
            +
                    # @param [String] quota_user
         | 
| 28693 | 
            +
                    #   Available to use for quota purposes for server-side applications. Can be any
         | 
| 28694 | 
            +
                    #   arbitrary string assigned to a user, but should not exceed 40 characters.
         | 
| 28695 | 
            +
                    # @param [String] user_ip
         | 
| 28696 | 
            +
                    #   Legacy name for parameter that has been superseded by `quotaUser`.
         | 
| 28697 | 
            +
                    # @param [Google::Apis::RequestOptions] options
         | 
| 28698 | 
            +
                    #   Request-specific options
         | 
| 28699 | 
            +
                    #
         | 
| 28700 | 
            +
                    # @yield [result, err] Result & error if block supplied
         | 
| 28701 | 
            +
                    # @yieldparam result [Google::Apis::ComputeV1::SecurityPolicyRule] parsed result object
         | 
| 28702 | 
            +
                    # @yieldparam err [StandardError] error object if request failed
         | 
| 28703 | 
            +
                    #
         | 
| 28704 | 
            +
                    # @return [Google::Apis::ComputeV1::SecurityPolicyRule]
         | 
| 28705 | 
            +
                    #
         | 
| 28706 | 
            +
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 28707 | 
            +
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 28708 | 
            +
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 28709 | 
            +
                    def get_region_security_policy_rule(project, region, security_policy, priority: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 28710 | 
            +
                      command = make_simple_command(:get, 'projects/{project}/regions/{region}/securityPolicies/{securityPolicy}/getRule', options)
         | 
| 28711 | 
            +
                      command.response_representation = Google::Apis::ComputeV1::SecurityPolicyRule::Representation
         | 
| 28712 | 
            +
                      command.response_class = Google::Apis::ComputeV1::SecurityPolicyRule
         | 
| 28713 | 
            +
                      command.params['project'] = project unless project.nil?
         | 
| 28714 | 
            +
                      command.params['region'] = region unless region.nil?
         | 
| 28715 | 
            +
                      command.params['securityPolicy'] = security_policy unless security_policy.nil?
         | 
| 28716 | 
            +
                      command.query['priority'] = priority unless priority.nil?
         | 
| 28717 | 
            +
                      command.query['fields'] = fields unless fields.nil?
         | 
| 28718 | 
            +
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 28719 | 
            +
                      command.query['userIp'] = user_ip unless user_ip.nil?
         | 
| 28720 | 
            +
                      execute_or_queue_command(command, &block)
         | 
| 28721 | 
            +
                    end
         | 
| 28722 | 
            +
                    
         | 
| 28344 28723 | 
             
                    # Creates a new policy in the specified project using the data included in the
         | 
| 28345 28724 | 
             
                    # request.
         | 
| 28346 28725 | 
             
                    # @param [String] project
         | 
| @@ -28544,6 +28923,97 @@ module Google | |
| 28544 28923 | 
             
                      execute_or_queue_command(command, &block)
         | 
| 28545 28924 | 
             
                    end
         | 
| 28546 28925 |  | 
| 28926 | 
            +
                    # Patches a rule at the specified priority. To clear fields in the rule, leave
         | 
| 28927 | 
            +
                    # the fields empty and specify them in the updateMask.
         | 
| 28928 | 
            +
                    # @param [String] project
         | 
| 28929 | 
            +
                    #   Project ID for this request.
         | 
| 28930 | 
            +
                    # @param [String] region
         | 
| 28931 | 
            +
                    #   Name of the region scoping this request.
         | 
| 28932 | 
            +
                    # @param [String] security_policy
         | 
| 28933 | 
            +
                    #   Name of the security policy to update.
         | 
| 28934 | 
            +
                    # @param [Google::Apis::ComputeV1::SecurityPolicyRule] security_policy_rule_object
         | 
| 28935 | 
            +
                    # @param [Fixnum] priority
         | 
| 28936 | 
            +
                    #   The priority of the rule to patch.
         | 
| 28937 | 
            +
                    # @param [Boolean] validate_only
         | 
| 28938 | 
            +
                    #   If true, the request will not be committed.
         | 
| 28939 | 
            +
                    # @param [String] fields
         | 
| 28940 | 
            +
                    #   Selector specifying which fields to include in a partial response.
         | 
| 28941 | 
            +
                    # @param [String] quota_user
         | 
| 28942 | 
            +
                    #   Available to use for quota purposes for server-side applications. Can be any
         | 
| 28943 | 
            +
                    #   arbitrary string assigned to a user, but should not exceed 40 characters.
         | 
| 28944 | 
            +
                    # @param [String] user_ip
         | 
| 28945 | 
            +
                    #   Legacy name for parameter that has been superseded by `quotaUser`.
         | 
| 28946 | 
            +
                    # @param [Google::Apis::RequestOptions] options
         | 
| 28947 | 
            +
                    #   Request-specific options
         | 
| 28948 | 
            +
                    #
         | 
| 28949 | 
            +
                    # @yield [result, err] Result & error if block supplied
         | 
| 28950 | 
            +
                    # @yieldparam result [Google::Apis::ComputeV1::Operation] parsed result object
         | 
| 28951 | 
            +
                    # @yieldparam err [StandardError] error object if request failed
         | 
| 28952 | 
            +
                    #
         | 
| 28953 | 
            +
                    # @return [Google::Apis::ComputeV1::Operation]
         | 
| 28954 | 
            +
                    #
         | 
| 28955 | 
            +
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 28956 | 
            +
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 28957 | 
            +
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 28958 | 
            +
                    def patch_region_security_policy_rule(project, region, security_policy, security_policy_rule_object = nil, priority: nil, validate_only: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 28959 | 
            +
                      command = make_simple_command(:post, 'projects/{project}/regions/{region}/securityPolicies/{securityPolicy}/patchRule', options)
         | 
| 28960 | 
            +
                      command.request_representation = Google::Apis::ComputeV1::SecurityPolicyRule::Representation
         | 
| 28961 | 
            +
                      command.request_object = security_policy_rule_object
         | 
| 28962 | 
            +
                      command.response_representation = Google::Apis::ComputeV1::Operation::Representation
         | 
| 28963 | 
            +
                      command.response_class = Google::Apis::ComputeV1::Operation
         | 
| 28964 | 
            +
                      command.params['project'] = project unless project.nil?
         | 
| 28965 | 
            +
                      command.params['region'] = region unless region.nil?
         | 
| 28966 | 
            +
                      command.params['securityPolicy'] = security_policy unless security_policy.nil?
         | 
| 28967 | 
            +
                      command.query['priority'] = priority unless priority.nil?
         | 
| 28968 | 
            +
                      command.query['validateOnly'] = validate_only unless validate_only.nil?
         | 
| 28969 | 
            +
                      command.query['fields'] = fields unless fields.nil?
         | 
| 28970 | 
            +
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 28971 | 
            +
                      command.query['userIp'] = user_ip unless user_ip.nil?
         | 
| 28972 | 
            +
                      execute_or_queue_command(command, &block)
         | 
| 28973 | 
            +
                    end
         | 
| 28974 | 
            +
                    
         | 
| 28975 | 
            +
                    # Deletes a rule at the specified priority.
         | 
| 28976 | 
            +
                    # @param [String] project
         | 
| 28977 | 
            +
                    #   Project ID for this request.
         | 
| 28978 | 
            +
                    # @param [String] region
         | 
| 28979 | 
            +
                    #   Name of the region scoping this request.
         | 
| 28980 | 
            +
                    # @param [String] security_policy
         | 
| 28981 | 
            +
                    #   Name of the security policy to update.
         | 
| 28982 | 
            +
                    # @param [Fixnum] priority
         | 
| 28983 | 
            +
                    #   The priority of the rule to remove from the security policy.
         | 
| 28984 | 
            +
                    # @param [String] fields
         | 
| 28985 | 
            +
                    #   Selector specifying which fields to include in a partial response.
         | 
| 28986 | 
            +
                    # @param [String] quota_user
         | 
| 28987 | 
            +
                    #   Available to use for quota purposes for server-side applications. Can be any
         | 
| 28988 | 
            +
                    #   arbitrary string assigned to a user, but should not exceed 40 characters.
         | 
| 28989 | 
            +
                    # @param [String] user_ip
         | 
| 28990 | 
            +
                    #   Legacy name for parameter that has been superseded by `quotaUser`.
         | 
| 28991 | 
            +
                    # @param [Google::Apis::RequestOptions] options
         | 
| 28992 | 
            +
                    #   Request-specific options
         | 
| 28993 | 
            +
                    #
         | 
| 28994 | 
            +
                    # @yield [result, err] Result & error if block supplied
         | 
| 28995 | 
            +
                    # @yieldparam result [Google::Apis::ComputeV1::Operation] parsed result object
         | 
| 28996 | 
            +
                    # @yieldparam err [StandardError] error object if request failed
         | 
| 28997 | 
            +
                    #
         | 
| 28998 | 
            +
                    # @return [Google::Apis::ComputeV1::Operation]
         | 
| 28999 | 
            +
                    #
         | 
| 29000 | 
            +
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 29001 | 
            +
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 29002 | 
            +
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 29003 | 
            +
                    def remove_region_security_policy_rule(project, region, security_policy, priority: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 29004 | 
            +
                      command = make_simple_command(:post, 'projects/{project}/regions/{region}/securityPolicies/{securityPolicy}/removeRule', options)
         | 
| 29005 | 
            +
                      command.response_representation = Google::Apis::ComputeV1::Operation::Representation
         | 
| 29006 | 
            +
                      command.response_class = Google::Apis::ComputeV1::Operation
         | 
| 29007 | 
            +
                      command.params['project'] = project unless project.nil?
         | 
| 29008 | 
            +
                      command.params['region'] = region unless region.nil?
         | 
| 29009 | 
            +
                      command.params['securityPolicy'] = security_policy unless security_policy.nil?
         | 
| 29010 | 
            +
                      command.query['priority'] = priority unless priority.nil?
         | 
| 29011 | 
            +
                      command.query['fields'] = fields unless fields.nil?
         | 
| 29012 | 
            +
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 29013 | 
            +
                      command.query['userIp'] = user_ip unless user_ip.nil?
         | 
| 29014 | 
            +
                      execute_or_queue_command(command, &block)
         | 
| 29015 | 
            +
                    end
         | 
| 29016 | 
            +
                    
         | 
| 28547 29017 | 
             
                    # Deletes the specified SslCertificate resource in the region.
         | 
| 28548 29018 | 
             
                    # @param [String] project
         | 
| 28549 29019 | 
             
                    #   Project ID for this request.
         | 
| @@ -30625,6 +31095,7 @@ module Google | |
| 30625 31095 | 
             
                    # @param [Boolean] return_partial_success
         | 
| 30626 31096 | 
             
                    #   Opt-in for partial success behavior which provides partial results in case of
         | 
| 30627 31097 | 
             
                    #   failure. The default value is false.
         | 
| 31098 | 
            +
                    # @param [Fixnum] service_project_number
         | 
| 30628 31099 | 
             
                    # @param [String] fields
         | 
| 30629 31100 | 
             
                    #   Selector specifying which fields to include in a partial response.
         | 
| 30630 31101 | 
             
                    # @param [String] quota_user
         | 
| @@ -30644,7 +31115,7 @@ module Google | |
| 30644 31115 | 
             
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 30645 31116 | 
             
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 30646 31117 | 
             
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 30647 | 
            -
                    def aggregated_reservation_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 31118 | 
            +
                    def aggregated_reservation_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, service_project_number: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 30648 31119 | 
             
                      command = make_simple_command(:get, 'projects/{project}/aggregated/reservations', options)
         | 
| 30649 31120 | 
             
                      command.response_representation = Google::Apis::ComputeV1::ReservationAggregatedList::Representation
         | 
| 30650 31121 | 
             
                      command.response_class = Google::Apis::ComputeV1::ReservationAggregatedList
         | 
| @@ -30655,6 +31126,7 @@ module Google | |
| 30655 31126 | 
             
                      command.query['orderBy'] = order_by unless order_by.nil?
         | 
| 30656 31127 | 
             
                      command.query['pageToken'] = page_token unless page_token.nil?
         | 
| 30657 31128 | 
             
                      command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
         | 
| 31129 | 
            +
                      command.query['serviceProjectNumber'] = service_project_number unless service_project_number.nil?
         | 
| 30658 31130 | 
             
                      command.query['fields'] = fields unless fields.nil?
         | 
| 30659 31131 | 
             
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 30660 31132 | 
             
                      command.query['userIp'] = user_ip unless user_ip.nil?
         | 
| @@ -31195,6 +31667,7 @@ module Google | |
| 31195 31667 | 
             
                    # @param [Boolean] return_partial_success
         | 
| 31196 31668 | 
             
                    #   Opt-in for partial success behavior which provides partial results in case of
         | 
| 31197 31669 | 
             
                    #   failure. The default value is false.
         | 
| 31670 | 
            +
                    # @param [Fixnum] service_project_number
         | 
| 31198 31671 | 
             
                    # @param [String] fields
         | 
| 31199 31672 | 
             
                    #   Selector specifying which fields to include in a partial response.
         | 
| 31200 31673 | 
             
                    # @param [String] quota_user
         | 
| @@ -31214,7 +31687,7 @@ module Google | |
| 31214 31687 | 
             
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 31215 31688 | 
             
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 31216 31689 | 
             
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 31217 | 
            -
                    def aggregated_resource_policy_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 31690 | 
            +
                    def aggregated_resource_policy_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, service_project_number: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 31218 31691 | 
             
                      command = make_simple_command(:get, 'projects/{project}/aggregated/resourcePolicies', options)
         | 
| 31219 31692 | 
             
                      command.response_representation = Google::Apis::ComputeV1::ResourcePolicyAggregatedList::Representation
         | 
| 31220 31693 | 
             
                      command.response_class = Google::Apis::ComputeV1::ResourcePolicyAggregatedList
         | 
| @@ -31225,6 +31698,7 @@ module Google | |
| 31225 31698 | 
             
                      command.query['orderBy'] = order_by unless order_by.nil?
         | 
| 31226 31699 | 
             
                      command.query['pageToken'] = page_token unless page_token.nil?
         | 
| 31227 31700 | 
             
                      command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
         | 
| 31701 | 
            +
                      command.query['serviceProjectNumber'] = service_project_number unless service_project_number.nil?
         | 
| 31228 31702 | 
             
                      command.query['fields'] = fields unless fields.nil?
         | 
| 31229 31703 | 
             
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 31230 31704 | 
             
                      command.query['userIp'] = user_ip unless user_ip.nil?
         | 
| @@ -31708,6 +32182,7 @@ module Google | |
| 31708 32182 | 
             
                    # @param [Boolean] return_partial_success
         | 
| 31709 32183 | 
             
                    #   Opt-in for partial success behavior which provides partial results in case of
         | 
| 31710 32184 | 
             
                    #   failure. The default value is false.
         | 
| 32185 | 
            +
                    # @param [Fixnum] service_project_number
         | 
| 31711 32186 | 
             
                    # @param [String] fields
         | 
| 31712 32187 | 
             
                    #   Selector specifying which fields to include in a partial response.
         | 
| 31713 32188 | 
             
                    # @param [String] quota_user
         | 
| @@ -31727,7 +32202,7 @@ module Google | |
| 31727 32202 | 
             
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 31728 32203 | 
             
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 31729 32204 | 
             
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 31730 | 
            -
                    def aggregated_router_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 32205 | 
            +
                    def aggregated_router_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, service_project_number: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 31731 32206 | 
             
                      command = make_simple_command(:get, 'projects/{project}/aggregated/routers', options)
         | 
| 31732 32207 | 
             
                      command.response_representation = Google::Apis::ComputeV1::RouterAggregatedList::Representation
         | 
| 31733 32208 | 
             
                      command.response_class = Google::Apis::ComputeV1::RouterAggregatedList
         | 
| @@ -31738,6 +32213,7 @@ module Google | |
| 31738 32213 | 
             
                      command.query['orderBy'] = order_by unless order_by.nil?
         | 
| 31739 32214 | 
             
                      command.query['pageToken'] = page_token unless page_token.nil?
         | 
| 31740 32215 | 
             
                      command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
         | 
| 32216 | 
            +
                      command.query['serviceProjectNumber'] = service_project_number unless service_project_number.nil?
         | 
| 31741 32217 | 
             
                      command.query['fields'] = fields unless fields.nil?
         | 
| 31742 32218 | 
             
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 31743 32219 | 
             
                      command.query['userIp'] = user_ip unless user_ip.nil?
         | 
| @@ -32638,6 +33114,7 @@ module Google | |
| 32638 33114 | 
             
                    # @param [Boolean] return_partial_success
         | 
| 32639 33115 | 
             
                    #   Opt-in for partial success behavior which provides partial results in case of
         | 
| 32640 33116 | 
             
                    #   failure. The default value is false.
         | 
| 33117 | 
            +
                    # @param [Fixnum] service_project_number
         | 
| 32641 33118 | 
             
                    # @param [String] fields
         | 
| 32642 33119 | 
             
                    #   Selector specifying which fields to include in a partial response.
         | 
| 32643 33120 | 
             
                    # @param [String] quota_user
         | 
| @@ -32657,7 +33134,7 @@ module Google | |
| 32657 33134 | 
             
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 32658 33135 | 
             
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 32659 33136 | 
             
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 32660 | 
            -
                    def aggregated_security_policy_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 33137 | 
            +
                    def aggregated_security_policy_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, service_project_number: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 32661 33138 | 
             
                      command = make_simple_command(:get, 'projects/{project}/aggregated/securityPolicies', options)
         | 
| 32662 33139 | 
             
                      command.response_representation = Google::Apis::ComputeV1::SecurityPoliciesAggregatedList::Representation
         | 
| 32663 33140 | 
             
                      command.response_class = Google::Apis::ComputeV1::SecurityPoliciesAggregatedList
         | 
| @@ -32668,6 +33145,7 @@ module Google | |
| 32668 33145 | 
             
                      command.query['orderBy'] = order_by unless order_by.nil?
         | 
| 32669 33146 | 
             
                      command.query['pageToken'] = page_token unless page_token.nil?
         | 
| 32670 33147 | 
             
                      command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
         | 
| 33148 | 
            +
                      command.query['serviceProjectNumber'] = service_project_number unless service_project_number.nil?
         | 
| 32671 33149 | 
             
                      command.query['fields'] = fields unless fields.nil?
         | 
| 32672 33150 | 
             
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 32673 33151 | 
             
                      command.query['userIp'] = user_ip unless user_ip.nil?
         | 
| @@ -33266,6 +33744,7 @@ module Google | |
| 33266 33744 | 
             
                    # @param [Boolean] return_partial_success
         | 
| 33267 33745 | 
             
                    #   Opt-in for partial success behavior which provides partial results in case of
         | 
| 33268 33746 | 
             
                    #   failure. The default value is false.
         | 
| 33747 | 
            +
                    # @param [Fixnum] service_project_number
         | 
| 33269 33748 | 
             
                    # @param [String] fields
         | 
| 33270 33749 | 
             
                    #   Selector specifying which fields to include in a partial response.
         | 
| 33271 33750 | 
             
                    # @param [String] quota_user
         | 
| @@ -33285,7 +33764,7 @@ module Google | |
| 33285 33764 | 
             
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 33286 33765 | 
             
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 33287 33766 | 
             
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 33288 | 
            -
                    def aggregated_service_attachment_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 33767 | 
            +
                    def aggregated_service_attachment_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, service_project_number: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 33289 33768 | 
             
                      command = make_simple_command(:get, 'projects/{project}/aggregated/serviceAttachments', options)
         | 
| 33290 33769 | 
             
                      command.response_representation = Google::Apis::ComputeV1::ServiceAttachmentAggregatedList::Representation
         | 
| 33291 33770 | 
             
                      command.response_class = Google::Apis::ComputeV1::ServiceAttachmentAggregatedList
         | 
| @@ -33296,6 +33775,7 @@ module Google | |
| 33296 33775 | 
             
                      command.query['orderBy'] = order_by unless order_by.nil?
         | 
| 33297 33776 | 
             
                      command.query['pageToken'] = page_token unless page_token.nil?
         | 
| 33298 33777 | 
             
                      command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
         | 
| 33778 | 
            +
                      command.query['serviceProjectNumber'] = service_project_number unless service_project_number.nil?
         | 
| 33299 33779 | 
             
                      command.query['fields'] = fields unless fields.nil?
         | 
| 33300 33780 | 
             
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 33301 33781 | 
             
                      command.query['userIp'] = user_ip unless user_ip.nil?
         | 
| @@ -34166,6 +34646,7 @@ module Google | |
| 34166 34646 | 
             
                    # @param [Boolean] return_partial_success
         | 
| 34167 34647 | 
             
                    #   Opt-in for partial success behavior which provides partial results in case of
         | 
| 34168 34648 | 
             
                    #   failure. The default value is false.
         | 
| 34649 | 
            +
                    # @param [Fixnum] service_project_number
         | 
| 34169 34650 | 
             
                    # @param [String] fields
         | 
| 34170 34651 | 
             
                    #   Selector specifying which fields to include in a partial response.
         | 
| 34171 34652 | 
             
                    # @param [String] quota_user
         | 
| @@ -34185,7 +34666,7 @@ module Google | |
| 34185 34666 | 
             
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 34186 34667 | 
             
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 34187 34668 | 
             
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 34188 | 
            -
                    def aggregated_ssl_certificate_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 34669 | 
            +
                    def aggregated_ssl_certificate_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, service_project_number: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 34189 34670 | 
             
                      command = make_simple_command(:get, 'projects/{project}/aggregated/sslCertificates', options)
         | 
| 34190 34671 | 
             
                      command.response_representation = Google::Apis::ComputeV1::SslCertificateAggregatedList::Representation
         | 
| 34191 34672 | 
             
                      command.response_class = Google::Apis::ComputeV1::SslCertificateAggregatedList
         | 
| @@ -34196,6 +34677,7 @@ module Google | |
| 34196 34677 | 
             
                      command.query['orderBy'] = order_by unless order_by.nil?
         | 
| 34197 34678 | 
             
                      command.query['pageToken'] = page_token unless page_token.nil?
         | 
| 34198 34679 | 
             
                      command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
         | 
| 34680 | 
            +
                      command.query['serviceProjectNumber'] = service_project_number unless service_project_number.nil?
         | 
| 34199 34681 | 
             
                      command.query['fields'] = fields unless fields.nil?
         | 
| 34200 34682 | 
             
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 34201 34683 | 
             
                      command.query['userIp'] = user_ip unless user_ip.nil?
         | 
| @@ -34485,6 +34967,7 @@ module Google | |
| 34485 34967 | 
             
                    # @param [Boolean] return_partial_success
         | 
| 34486 34968 | 
             
                    #   Opt-in for partial success behavior which provides partial results in case of
         | 
| 34487 34969 | 
             
                    #   failure. The default value is false.
         | 
| 34970 | 
            +
                    # @param [Fixnum] service_project_number
         | 
| 34488 34971 | 
             
                    # @param [String] fields
         | 
| 34489 34972 | 
             
                    #   Selector specifying which fields to include in a partial response.
         | 
| 34490 34973 | 
             
                    # @param [String] quota_user
         | 
| @@ -34504,7 +34987,7 @@ module Google | |
| 34504 34987 | 
             
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 34505 34988 | 
             
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 34506 34989 | 
             
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 34507 | 
            -
                    def aggregated_ssl_policy_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 34990 | 
            +
                    def aggregated_ssl_policy_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, service_project_number: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 34508 34991 | 
             
                      command = make_simple_command(:get, 'projects/{project}/aggregated/sslPolicies', options)
         | 
| 34509 34992 | 
             
                      command.response_representation = Google::Apis::ComputeV1::SslPoliciesAggregatedList::Representation
         | 
| 34510 34993 | 
             
                      command.response_class = Google::Apis::ComputeV1::SslPoliciesAggregatedList
         | 
| @@ -34515,6 +34998,7 @@ module Google | |
| 34515 34998 | 
             
                      command.query['orderBy'] = order_by unless order_by.nil?
         | 
| 34516 34999 | 
             
                      command.query['pageToken'] = page_token unless page_token.nil?
         | 
| 34517 35000 | 
             
                      command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
         | 
| 35001 | 
            +
                      command.query['serviceProjectNumber'] = service_project_number unless service_project_number.nil?
         | 
| 34518 35002 | 
             
                      command.query['fields'] = fields unless fields.nil?
         | 
| 34519 35003 | 
             
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 34520 35004 | 
             
                      command.query['userIp'] = user_ip unless user_ip.nil?
         | 
| @@ -34945,6 +35429,7 @@ module Google | |
| 34945 35429 | 
             
                    # @param [Boolean] return_partial_success
         | 
| 34946 35430 | 
             
                    #   Opt-in for partial success behavior which provides partial results in case of
         | 
| 34947 35431 | 
             
                    #   failure. The default value is false.
         | 
| 35432 | 
            +
                    # @param [Fixnum] service_project_number
         | 
| 34948 35433 | 
             
                    # @param [String] fields
         | 
| 34949 35434 | 
             
                    #   Selector specifying which fields to include in a partial response.
         | 
| 34950 35435 | 
             
                    # @param [String] quota_user
         | 
| @@ -34964,7 +35449,7 @@ module Google | |
| 34964 35449 | 
             
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 34965 35450 | 
             
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 34966 35451 | 
             
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 34967 | 
            -
                    def aggregated_subnetwork_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 35452 | 
            +
                    def aggregated_subnetwork_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, service_project_number: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 34968 35453 | 
             
                      command = make_simple_command(:get, 'projects/{project}/aggregated/subnetworks', options)
         | 
| 34969 35454 | 
             
                      command.response_representation = Google::Apis::ComputeV1::SubnetworkAggregatedList::Representation
         | 
| 34970 35455 | 
             
                      command.response_class = Google::Apis::ComputeV1::SubnetworkAggregatedList
         | 
| @@ -34975,6 +35460,7 @@ module Google | |
| 34975 35460 | 
             
                      command.query['orderBy'] = order_by unless order_by.nil?
         | 
| 34976 35461 | 
             
                      command.query['pageToken'] = page_token unless page_token.nil?
         | 
| 34977 35462 | 
             
                      command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
         | 
| 35463 | 
            +
                      command.query['serviceProjectNumber'] = service_project_number unless service_project_number.nil?
         | 
| 34978 35464 | 
             
                      command.query['fields'] = fields unless fields.nil?
         | 
| 34979 35465 | 
             
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 34980 35466 | 
             
                      command.query['userIp'] = user_ip unless user_ip.nil?
         | 
| @@ -35936,6 +36422,7 @@ module Google | |
| 35936 36422 | 
             
                    # @param [Boolean] return_partial_success
         | 
| 35937 36423 | 
             
                    #   Opt-in for partial success behavior which provides partial results in case of
         | 
| 35938 36424 | 
             
                    #   failure. The default value is false.
         | 
| 36425 | 
            +
                    # @param [Fixnum] service_project_number
         | 
| 35939 36426 | 
             
                    # @param [String] fields
         | 
| 35940 36427 | 
             
                    #   Selector specifying which fields to include in a partial response.
         | 
| 35941 36428 | 
             
                    # @param [String] quota_user
         | 
| @@ -35955,7 +36442,7 @@ module Google | |
| 35955 36442 | 
             
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 35956 36443 | 
             
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 35957 36444 | 
             
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 35958 | 
            -
                    def aggregated_target_http_proxy_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 36445 | 
            +
                    def aggregated_target_http_proxy_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, service_project_number: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 35959 36446 | 
             
                      command = make_simple_command(:get, 'projects/{project}/aggregated/targetHttpProxies', options)
         | 
| 35960 36447 | 
             
                      command.response_representation = Google::Apis::ComputeV1::TargetHttpProxyAggregatedList::Representation
         | 
| 35961 36448 | 
             
                      command.response_class = Google::Apis::ComputeV1::TargetHttpProxyAggregatedList
         | 
| @@ -35966,6 +36453,7 @@ module Google | |
| 35966 36453 | 
             
                      command.query['orderBy'] = order_by unless order_by.nil?
         | 
| 35967 36454 | 
             
                      command.query['pageToken'] = page_token unless page_token.nil?
         | 
| 35968 36455 | 
             
                      command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
         | 
| 36456 | 
            +
                      command.query['serviceProjectNumber'] = service_project_number unless service_project_number.nil?
         | 
| 35969 36457 | 
             
                      command.query['fields'] = fields unless fields.nil?
         | 
| 35970 36458 | 
             
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 35971 36459 | 
             
                      command.query['userIp'] = user_ip unless user_ip.nil?
         | 
| @@ -36357,6 +36845,7 @@ module Google | |
| 36357 36845 | 
             
                    # @param [Boolean] return_partial_success
         | 
| 36358 36846 | 
             
                    #   Opt-in for partial success behavior which provides partial results in case of
         | 
| 36359 36847 | 
             
                    #   failure. The default value is false.
         | 
| 36848 | 
            +
                    # @param [Fixnum] service_project_number
         | 
| 36360 36849 | 
             
                    # @param [String] fields
         | 
| 36361 36850 | 
             
                    #   Selector specifying which fields to include in a partial response.
         | 
| 36362 36851 | 
             
                    # @param [String] quota_user
         | 
| @@ -36376,7 +36865,7 @@ module Google | |
| 36376 36865 | 
             
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 36377 36866 | 
             
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 36378 36867 | 
             
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 36379 | 
            -
                    def aggregated_target_https_proxy_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 36868 | 
            +
                    def aggregated_target_https_proxy_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, service_project_number: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 36380 36869 | 
             
                      command = make_simple_command(:get, 'projects/{project}/aggregated/targetHttpsProxies', options)
         | 
| 36381 36870 | 
             
                      command.response_representation = Google::Apis::ComputeV1::TargetHttpsProxyAggregatedList::Representation
         | 
| 36382 36871 | 
             
                      command.response_class = Google::Apis::ComputeV1::TargetHttpsProxyAggregatedList
         | 
| @@ -36387,6 +36876,7 @@ module Google | |
| 36387 36876 | 
             
                      command.query['orderBy'] = order_by unless order_by.nil?
         | 
| 36388 36877 | 
             
                      command.query['pageToken'] = page_token unless page_token.nil?
         | 
| 36389 36878 | 
             
                      command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
         | 
| 36879 | 
            +
                      command.query['serviceProjectNumber'] = service_project_number unless service_project_number.nil?
         | 
| 36390 36880 | 
             
                      command.query['fields'] = fields unless fields.nil?
         | 
| 36391 36881 | 
             
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 36392 36882 | 
             
                      command.query['userIp'] = user_ip unless user_ip.nil?
         | 
| @@ -36983,6 +37473,7 @@ module Google | |
| 36983 37473 | 
             
                    # @param [Boolean] return_partial_success
         | 
| 36984 37474 | 
             
                    #   Opt-in for partial success behavior which provides partial results in case of
         | 
| 36985 37475 | 
             
                    #   failure. The default value is false.
         | 
| 37476 | 
            +
                    # @param [Fixnum] service_project_number
         | 
| 36986 37477 | 
             
                    # @param [String] fields
         | 
| 36987 37478 | 
             
                    #   Selector specifying which fields to include in a partial response.
         | 
| 36988 37479 | 
             
                    # @param [String] quota_user
         | 
| @@ -37002,7 +37493,7 @@ module Google | |
| 37002 37493 | 
             
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 37003 37494 | 
             
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 37004 37495 | 
             
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 37005 | 
            -
                    def list_aggregated_target_instance(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 37496 | 
            +
                    def list_aggregated_target_instance(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, service_project_number: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 37006 37497 | 
             
                      command = make_simple_command(:get, 'projects/{project}/aggregated/targetInstances', options)
         | 
| 37007 37498 | 
             
                      command.response_representation = Google::Apis::ComputeV1::TargetInstanceAggregatedList::Representation
         | 
| 37008 37499 | 
             
                      command.response_class = Google::Apis::ComputeV1::TargetInstanceAggregatedList
         | 
| @@ -37013,6 +37504,7 @@ module Google | |
| 37013 37504 | 
             
                      command.query['orderBy'] = order_by unless order_by.nil?
         | 
| 37014 37505 | 
             
                      command.query['pageToken'] = page_token unless page_token.nil?
         | 
| 37015 37506 | 
             
                      command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
         | 
| 37507 | 
            +
                      command.query['serviceProjectNumber'] = service_project_number unless service_project_number.nil?
         | 
| 37016 37508 | 
             
                      command.query['fields'] = fields unless fields.nil?
         | 
| 37017 37509 | 
             
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 37018 37510 | 
             
                      command.query['userIp'] = user_ip unless user_ip.nil?
         | 
| @@ -37474,6 +37966,7 @@ module Google | |
| 37474 37966 | 
             
                    # @param [Boolean] return_partial_success
         | 
| 37475 37967 | 
             
                    #   Opt-in for partial success behavior which provides partial results in case of
         | 
| 37476 37968 | 
             
                    #   failure. The default value is false.
         | 
| 37969 | 
            +
                    # @param [Fixnum] service_project_number
         | 
| 37477 37970 | 
             
                    # @param [String] fields
         | 
| 37478 37971 | 
             
                    #   Selector specifying which fields to include in a partial response.
         | 
| 37479 37972 | 
             
                    # @param [String] quota_user
         | 
| @@ -37493,7 +37986,7 @@ module Google | |
| 37493 37986 | 
             
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 37494 37987 | 
             
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 37495 37988 | 
             
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 37496 | 
            -
                    def list_aggregated_target_pools(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 37989 | 
            +
                    def list_aggregated_target_pools(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, service_project_number: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 37497 37990 | 
             
                      command = make_simple_command(:get, 'projects/{project}/aggregated/targetPools', options)
         | 
| 37498 37991 | 
             
                      command.response_representation = Google::Apis::ComputeV1::TargetPoolAggregatedList::Representation
         | 
| 37499 37992 | 
             
                      command.response_class = Google::Apis::ComputeV1::TargetPoolAggregatedList
         | 
| @@ -37504,6 +37997,7 @@ module Google | |
| 37504 37997 | 
             
                      command.query['orderBy'] = order_by unless order_by.nil?
         | 
| 37505 37998 | 
             
                      command.query['pageToken'] = page_token unless page_token.nil?
         | 
| 37506 37999 | 
             
                      command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
         | 
| 38000 | 
            +
                      command.query['serviceProjectNumber'] = service_project_number unless service_project_number.nil?
         | 
| 37507 38001 | 
             
                      command.query['fields'] = fields unless fields.nil?
         | 
| 37508 38002 | 
             
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 37509 38003 | 
             
                      command.query['userIp'] = user_ip unless user_ip.nil?
         | 
| @@ -38540,6 +39034,7 @@ module Google | |
| 38540 39034 | 
             
                    # @param [Boolean] return_partial_success
         | 
| 38541 39035 | 
             
                    #   Opt-in for partial success behavior which provides partial results in case of
         | 
| 38542 39036 | 
             
                    #   failure. The default value is false.
         | 
| 39037 | 
            +
                    # @param [Fixnum] service_project_number
         | 
| 38543 39038 | 
             
                    # @param [String] fields
         | 
| 38544 39039 | 
             
                    #   Selector specifying which fields to include in a partial response.
         | 
| 38545 39040 | 
             
                    # @param [String] quota_user
         | 
| @@ -38559,7 +39054,7 @@ module Google | |
| 38559 39054 | 
             
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 38560 39055 | 
             
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 38561 39056 | 
             
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 38562 | 
            -
                    def aggregated_target_tcp_proxy_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 39057 | 
            +
                    def aggregated_target_tcp_proxy_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, service_project_number: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 38563 39058 | 
             
                      command = make_simple_command(:get, 'projects/{project}/aggregated/targetTcpProxies', options)
         | 
| 38564 39059 | 
             
                      command.response_representation = Google::Apis::ComputeV1::TargetTcpProxyAggregatedList::Representation
         | 
| 38565 39060 | 
             
                      command.response_class = Google::Apis::ComputeV1::TargetTcpProxyAggregatedList
         | 
| @@ -38570,6 +39065,7 @@ module Google | |
| 38570 39065 | 
             
                      command.query['orderBy'] = order_by unless order_by.nil?
         | 
| 38571 39066 | 
             
                      command.query['pageToken'] = page_token unless page_token.nil?
         | 
| 38572 39067 | 
             
                      command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
         | 
| 39068 | 
            +
                      command.query['serviceProjectNumber'] = service_project_number unless service_project_number.nil?
         | 
| 38573 39069 | 
             
                      command.query['fields'] = fields unless fields.nil?
         | 
| 38574 39070 | 
             
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 38575 39071 | 
             
                      command.query['userIp'] = user_ip unless user_ip.nil?
         | 
| @@ -38958,6 +39454,7 @@ module Google | |
| 38958 39454 | 
             
                    # @param [Boolean] return_partial_success
         | 
| 38959 39455 | 
             
                    #   Opt-in for partial success behavior which provides partial results in case of
         | 
| 38960 39456 | 
             
                    #   failure. The default value is false.
         | 
| 39457 | 
            +
                    # @param [Fixnum] service_project_number
         | 
| 38961 39458 | 
             
                    # @param [String] fields
         | 
| 38962 39459 | 
             
                    #   Selector specifying which fields to include in a partial response.
         | 
| 38963 39460 | 
             
                    # @param [String] quota_user
         | 
| @@ -38977,7 +39474,7 @@ module Google | |
| 38977 39474 | 
             
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 38978 39475 | 
             
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 38979 39476 | 
             
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 38980 | 
            -
                    def list_aggregated_target_vpn_gateways(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 39477 | 
            +
                    def list_aggregated_target_vpn_gateways(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, service_project_number: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 38981 39478 | 
             
                      command = make_simple_command(:get, 'projects/{project}/aggregated/targetVpnGateways', options)
         | 
| 38982 39479 | 
             
                      command.response_representation = Google::Apis::ComputeV1::TargetVpnGatewayAggregatedList::Representation
         | 
| 38983 39480 | 
             
                      command.response_class = Google::Apis::ComputeV1::TargetVpnGatewayAggregatedList
         | 
| @@ -38988,6 +39485,7 @@ module Google | |
| 38988 39485 | 
             
                      command.query['orderBy'] = order_by unless order_by.nil?
         | 
| 38989 39486 | 
             
                      command.query['pageToken'] = page_token unless page_token.nil?
         | 
| 38990 39487 | 
             
                      command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
         | 
| 39488 | 
            +
                      command.query['serviceProjectNumber'] = service_project_number unless service_project_number.nil?
         | 
| 38991 39489 | 
             
                      command.query['fields'] = fields unless fields.nil?
         | 
| 38992 39490 | 
             
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 38993 39491 | 
             
                      command.query['userIp'] = user_ip unless user_ip.nil?
         | 
| @@ -39343,6 +39841,7 @@ module Google | |
| 39343 39841 | 
             
                    # @param [Boolean] return_partial_success
         | 
| 39344 39842 | 
             
                    #   Opt-in for partial success behavior which provides partial results in case of
         | 
| 39345 39843 | 
             
                    #   failure. The default value is false.
         | 
| 39844 | 
            +
                    # @param [Fixnum] service_project_number
         | 
| 39346 39845 | 
             
                    # @param [String] fields
         | 
| 39347 39846 | 
             
                    #   Selector specifying which fields to include in a partial response.
         | 
| 39348 39847 | 
             
                    # @param [String] quota_user
         | 
| @@ -39362,7 +39861,7 @@ module Google | |
| 39362 39861 | 
             
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 39363 39862 | 
             
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 39364 39863 | 
             
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 39365 | 
            -
                    def aggregated_url_map_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 39864 | 
            +
                    def aggregated_url_map_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, service_project_number: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 39366 39865 | 
             
                      command = make_simple_command(:get, 'projects/{project}/aggregated/urlMaps', options)
         | 
| 39367 39866 | 
             
                      command.response_representation = Google::Apis::ComputeV1::UrlMapsAggregatedList::Representation
         | 
| 39368 39867 | 
             
                      command.response_class = Google::Apis::ComputeV1::UrlMapsAggregatedList
         | 
| @@ -39373,6 +39872,7 @@ module Google | |
| 39373 39872 | 
             
                      command.query['orderBy'] = order_by unless order_by.nil?
         | 
| 39374 39873 | 
             
                      command.query['pageToken'] = page_token unless page_token.nil?
         | 
| 39375 39874 | 
             
                      command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
         | 
| 39875 | 
            +
                      command.query['serviceProjectNumber'] = service_project_number unless service_project_number.nil?
         | 
| 39376 39876 | 
             
                      command.query['fields'] = fields unless fields.nil?
         | 
| 39377 39877 | 
             
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 39378 39878 | 
             
                      command.query['userIp'] = user_ip unless user_ip.nil?
         | 
| @@ -39854,6 +40354,7 @@ module Google | |
| 39854 40354 | 
             
                    # @param [Boolean] return_partial_success
         | 
| 39855 40355 | 
             
                    #   Opt-in for partial success behavior which provides partial results in case of
         | 
| 39856 40356 | 
             
                    #   failure. The default value is false.
         | 
| 40357 | 
            +
                    # @param [Fixnum] service_project_number
         | 
| 39857 40358 | 
             
                    # @param [String] fields
         | 
| 39858 40359 | 
             
                    #   Selector specifying which fields to include in a partial response.
         | 
| 39859 40360 | 
             
                    # @param [String] quota_user
         | 
| @@ -39873,7 +40374,7 @@ module Google | |
| 39873 40374 | 
             
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 39874 40375 | 
             
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 39875 40376 | 
             
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 39876 | 
            -
                    def aggregated_vpn_gateway_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 40377 | 
            +
                    def aggregated_vpn_gateway_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, service_project_number: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 39877 40378 | 
             
                      command = make_simple_command(:get, 'projects/{project}/aggregated/vpnGateways', options)
         | 
| 39878 40379 | 
             
                      command.response_representation = Google::Apis::ComputeV1::VpnGatewayAggregatedList::Representation
         | 
| 39879 40380 | 
             
                      command.response_class = Google::Apis::ComputeV1::VpnGatewayAggregatedList
         | 
| @@ -39884,6 +40385,7 @@ module Google | |
| 39884 40385 | 
             
                      command.query['orderBy'] = order_by unless order_by.nil?
         | 
| 39885 40386 | 
             
                      command.query['pageToken'] = page_token unless page_token.nil?
         | 
| 39886 40387 | 
             
                      command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
         | 
| 40388 | 
            +
                      command.query['serviceProjectNumber'] = service_project_number unless service_project_number.nil?
         | 
| 39887 40389 | 
             
                      command.query['fields'] = fields unless fields.nil?
         | 
| 39888 40390 | 
             
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 39889 40391 | 
             
                      command.query['userIp'] = user_ip unless user_ip.nil?
         | 
| @@ -40318,6 +40820,7 @@ module Google | |
| 40318 40820 | 
             
                    # @param [Boolean] return_partial_success
         | 
| 40319 40821 | 
             
                    #   Opt-in for partial success behavior which provides partial results in case of
         | 
| 40320 40822 | 
             
                    #   failure. The default value is false.
         | 
| 40823 | 
            +
                    # @param [Fixnum] service_project_number
         | 
| 40321 40824 | 
             
                    # @param [String] fields
         | 
| 40322 40825 | 
             
                    #   Selector specifying which fields to include in a partial response.
         | 
| 40323 40826 | 
             
                    # @param [String] quota_user
         | 
| @@ -40337,7 +40840,7 @@ module Google | |
| 40337 40840 | 
             
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 40338 40841 | 
             
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 40339 40842 | 
             
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 40340 | 
            -
                    def list_aggregated_vpn_tunnel(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 40843 | 
            +
                    def list_aggregated_vpn_tunnel(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, service_project_number: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
         | 
| 40341 40844 | 
             
                      command = make_simple_command(:get, 'projects/{project}/aggregated/vpnTunnels', options)
         | 
| 40342 40845 | 
             
                      command.response_representation = Google::Apis::ComputeV1::VpnTunnelAggregatedList::Representation
         | 
| 40343 40846 | 
             
                      command.response_class = Google::Apis::ComputeV1::VpnTunnelAggregatedList
         | 
| @@ -40348,6 +40851,7 @@ module Google | |
| 40348 40851 | 
             
                      command.query['orderBy'] = order_by unless order_by.nil?
         | 
| 40349 40852 | 
             
                      command.query['pageToken'] = page_token unless page_token.nil?
         | 
| 40350 40853 | 
             
                      command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
         | 
| 40854 | 
            +
                      command.query['serviceProjectNumber'] = service_project_number unless service_project_number.nil?
         | 
| 40351 40855 | 
             
                      command.query['fields'] = fields unless fields.nil?
         | 
| 40352 40856 | 
             
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 40353 40857 | 
             
                      command.query['userIp'] = user_ip unless user_ip.nil?
         |