google-apis-compute_alpha 0.62.0 → 0.63.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7cc0f9474c8b0eb26a51272b5cb0ac0c570190da08b634d16b6a752682693d99
4
- data.tar.gz: 011a1a653e1f1db49a4e68e725e35fc8e995452a9b465a46c9fbaa4c4f037562
3
+ metadata.gz: cddc2aaad19e0d24453250bd6c8846e15dc3761f234d2bf6dd4d5d552857c0b1
4
+ data.tar.gz: f7987cd27dd570cd2827cb9564aab9a84888cbb044bebeb8176d1c81ef052434
5
5
  SHA512:
6
- metadata.gz: bca12aa459e492311433e4357e9a627dfb82b7d6b7ef48708fdf34718577d95a61e8140299eda0619ef2a303522e602e24d997e75481868e471b3bd6c2004cc9
7
- data.tar.gz: bf84497f8384dbe4948c7463830ea39506f491147ce6ee64d4065f5ac70a9562a04a49e3f27b790694d08c2fae6ce7f6c6ca2ee7f5ebada8b76d7da2e48ebc8c
6
+ metadata.gz: cdf1ae9687e26fa4568d79387dcc40cdd4a528edf1e92bbd06b6c3f86ee1c3248038dcf3d43444bcbd568eb5f8532bc01e74ddab2f3789fce16552a57fc88e72
7
+ data.tar.gz: 80c608febe3d48a09ed68b9d21aab5ed61faae92daa7115865cf83c19f7cab1f29f4fa51cd65bf94b950937acfaed6d7ce9ea69670f4e2f60d4d45e2dd0c0496
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-compute_alpha
2
2
 
3
+ ### v0.63.0 (2023-03-12)
4
+
5
+ * Regenerated from discovery document revision 20230307
6
+
3
7
  ### v0.62.0 (2023-03-05)
4
8
 
5
9
  * Regenerated from discovery document revision 20230221
@@ -11726,8 +11726,8 @@ module Google
11726
11726
  # The ID of a supported feature. To add multiple values, use commas to separate
11727
11727
  # values. Set to one or more of the following values: - VIRTIO_SCSI_MULTIQUEUE -
11728
11728
  # WINDOWS - MULTI_IP_SUBNET - UEFI_COMPATIBLE - GVNIC - SEV_CAPABLE -
11729
- # SUSPEND_RESUME_COMPATIBLE - SEV_SNP_CAPABLE For more information, see Enabling
11730
- # guest operating system features.
11729
+ # SUSPEND_RESUME_COMPATIBLE - SEV_SNP_CAPABLE - TDX_CAPABLE For more information,
11730
+ # see Enabling guest operating system features.
11731
11731
  # Corresponds to the JSON property `type`
11732
11732
  # @return [String]
11733
11733
  attr_accessor :type
@@ -13631,7 +13631,7 @@ module Google
13631
13631
  attr_accessor :port
13632
13632
 
13633
13633
  # The request path of the HTTP health check request. The default value is /.
13634
- # This field does not support query parameters.
13634
+ # This field does not support query parameters. Must comply with RFC3986.
13635
13635
  # Corresponds to the JSON property `requestPath`
13636
13636
  # @return [String]
13637
13637
  attr_accessor :request_path
@@ -14336,6 +14336,7 @@ module Google
14336
14336
  attr_accessor :port
14337
14337
 
14338
14338
  # The request path of the HTTPS health check request. The default value is "/".
14339
+ # Must comply with RFC3986.
14339
14340
  # Corresponds to the JSON property `requestPath`
14340
14341
  # @return [String]
14341
14342
  attr_accessor :request_path
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ComputeAlpha
18
18
  # Version of the google-apis-compute_alpha gem
19
- GEM_VERSION = "0.62.0"
19
+ GEM_VERSION = "0.63.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230221"
25
+ REVISION = "20230307"
26
26
  end
27
27
  end
28
28
  end
@@ -39443,6 +39443,8 @@ module Google
39443
39443
  # @param [Google::Apis::ComputeAlpha::SecurityPolicyRule] security_policy_rule_object
39444
39444
  # @param [Fixnum] priority
39445
39445
  # The priority of the rule to patch.
39446
+ # @param [String] update_mask
39447
+ # Indicates fields to be cleared as part of this request.
39446
39448
  # @param [Boolean] validate_only
39447
39449
  # If true, the request will not be committed.
39448
39450
  # @param [String] fields
@@ -39464,7 +39466,7 @@ module Google
39464
39466
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
39465
39467
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
39466
39468
  # @raise [Google::Apis::AuthorizationError] Authorization is required
39467
- def patch_security_policy_rule(project, security_policy, security_policy_rule_object = nil, priority: nil, validate_only: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
39469
+ def patch_security_policy_rule(project, security_policy, security_policy_rule_object = nil, priority: nil, update_mask: nil, validate_only: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
39468
39470
  command = make_simple_command(:post, 'projects/{project}/global/securityPolicies/{securityPolicy}/patchRule', options)
39469
39471
  command.request_representation = Google::Apis::ComputeAlpha::SecurityPolicyRule::Representation
39470
39472
  command.request_object = security_policy_rule_object
@@ -39473,6 +39475,7 @@ module Google
39473
39475
  command.params['project'] = project unless project.nil?
39474
39476
  command.params['securityPolicy'] = security_policy unless security_policy.nil?
39475
39477
  command.query['priority'] = priority unless priority.nil?
39478
+ command.query['updateMask'] = update_mask unless update_mask.nil?
39476
39479
  command.query['validateOnly'] = validate_only unless validate_only.nil?
39477
39480
  command.query['fields'] = fields unless fields.nil?
39478
39481
  command.query['quotaUser'] = quota_user unless quota_user.nil?
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-compute_alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.62.0
4
+ version: 0.63.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-03-05 00:00:00.000000000 Z
11
+ date: 2023-03-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_alpha/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-compute_alpha/v0.62.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-compute_alpha/v0.63.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_alpha
63
63
  post_install_message:
64
64
  rdoc_options: []