@@ -26710,6 +26710,8 @@ def move_organization_security_policy(security_policy, parent_id: nil, request_i
2671026710 # second request. This prevents clients from accidentally creating duplicate
2671126711 # commitments. The request ID must be a valid UUID with the exception that zero
2671226712 # UUID is not supported ( 00000000-0000-0000-0000-000000000000).
26713+ # @param [String] update_mask
26714+ # Indicates fields to be cleared as part of this request.
2671326715 # @param [String] fields
2671426716 # Selector specifying which fields to include in a partial response.
2671526717 # @param [String] quota_user
@@ -26729,14 +26731,15 @@ def move_organization_security_policy(security_policy, parent_id: nil, request_i
2672926731 # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2673026732 # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2673126733 # @raise [Google::Apis::AuthorizationError] Authorization is required
26732- def patch_organization_security_policy(security_policy, security_policy_object = nil, request_id: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
26734+ def patch_organization_security_policy(security_policy, security_policy_object = nil, request_id: nil, update_mask: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
2673326735 command = make_simple_command(:patch, 'locations/global/securityPolicies/{securityPolicy}', options)
2673426736 command.request_representation = Google::Apis::ComputeBeta::SecurityPolicy::Representation
2673526737 command.request_object = security_policy_object
2673626738 command.response_representation = Google::Apis::ComputeBeta::Operation::Representation
2673726739 command.response_class = Google::Apis::ComputeBeta::Operation
2673826740 command.params['securityPolicy'] = security_policy unless security_policy.nil?
2673926741 command.query['requestId'] = request_id unless request_id.nil?
26742+ command.query['updateMask'] = update_mask unless update_mask.nil?
2674026743 command.query['fields'] = fields unless fields.nil?
2674126744 command.query['quotaUser'] = quota_user unless quota_user.nil?
2674226745 command.query['userIp'] = user_ip unless user_ip.nil?
@@ -26760,6 +26763,8 @@ def patch_organization_security_policy(security_policy, security_policy_object =
2676026763 # second request. This prevents clients from accidentally creating duplicate
2676126764 # commitments. The request ID must be a valid UUID with the exception that zero
2676226765 # UUID is not supported ( 00000000-0000-0000-0000-000000000000).
26766+ # @param [String] update_mask
26767+ # Indicates fields to be cleared as part of this request.
2676326768 # @param [String] fields
2676426769 # Selector specifying which fields to include in a partial response.
2676526770 # @param [String] quota_user
@@ -26779,7 +26784,7 @@ def patch_organization_security_policy(security_policy, security_policy_object =
2677926784 # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2678026785 # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2678126786 # @raise [Google::Apis::AuthorizationError] Authorization is required
26782- def patch_organization_security_policy_rule(security_policy, security_policy_rule_object = nil, priority: nil, request_id: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
26787+ def patch_organization_security_policy_rule(security_policy, security_policy_rule_object = nil, priority: nil, request_id: nil, update_mask: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
2678326788 command = make_simple_command(:post, 'locations/global/securityPolicies/{securityPolicy}/patchRule', options)
2678426789 command.request_representation = Google::Apis::ComputeBeta::SecurityPolicyRule::Representation
2678526790 command.request_object = security_policy_rule_object
@@ -26788,6 +26793,7 @@ def patch_organization_security_policy_rule(security_policy, security_policy_rul
2678826793 command.params['securityPolicy'] = security_policy unless security_policy.nil?
2678926794 command.query['priority'] = priority unless priority.nil?
2679026795 command.query['requestId'] = request_id unless request_id.nil?
26796+ command.query['updateMask'] = update_mask unless update_mask.nil?
2679126797 command.query['fields'] = fields unless fields.nil?
2679226798 command.query['quotaUser'] = quota_user unless quota_user.nil?
2679326799 command.query['userIp'] = user_ip unless user_ip.nil?
@@ -27947,7 +27953,14 @@ def list_project_xpn_hosts(project, projects_list_xpn_hosts_request_object = nil
2794727953 execute_or_queue_command(command, &block)
2794827954 end
2794927955
27950- # Moves a persistent disk from one zone to another.
27956+ # Starting September 29, 2025, you can't use the moveDisk API on new projects.
27957+ # To move a disk to a different region or zone, follow the steps in [Change the
27958+ # location of a disk](https://`$universe.dns_names.final_documentation_domain`/
27959+ # compute/docs/disks/migrate-to-hyperdisk#migrate-to-hd). Projects that already
27960+ # use the moveDisk API can continue usage until September 29, 2026. Starting
27961+ # November 1, 2025, API responses will include a warning message in the response
27962+ # body about the upcoming deprecation. You can skip the message to continue
27963+ # using the service without interruption.
2795127964 # @param [String] project
2795227965 # Project ID for this request.
2795327966 # @param [Google::Apis::ComputeBeta::DiskMoveRequest] disk_move_request_object
0 commit comments