google-apis-compute_v1 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: e8bd54bba4abc9855ec719fcf95b3aaa4b371cdaa1de0523a8da97bd02368229
4
- data.tar.gz: 8ed8a0d3bd89690b2788338c767d04265a87d1c190e54c55fb07b85cec204898
3
+ metadata.gz: 22f56772a1a41962896b6cf12acf7924e49acce1f6b3868ac8df2645f5e7c568
4
+ data.tar.gz: ac519130f836d8807bda641a5882f391491743d89c0bb6d3ded8c60b05341f16
5
5
  SHA512:
6
- metadata.gz: 8288c84ccaa99590c2061340ca27f45ee7685b041cc8dd988a147858557863a31a7b2b765e12d501236d1fa5cfee67d0730a2486183d2c3bea870aa18f11bfa7
7
- data.tar.gz: 4c42fe365c4f4d631de396bd320c26228d0b83aa8e038d2533fd3233e884d6eea117f55f2ce54baaa74d5de77d69a4b850af9d180b3b61b5822f82c3b9ebdefb
6
+ metadata.gz: 5c5b540ac6cfeced8063649c9035fb09763294e7e8837fd337fc94dd9f7c4e3c02cacccac81f25e6f3a6f30335030cbaff8f40fb83c6832034f63dac740ae351
7
+ data.tar.gz: 36f99a70002d124eb3fc564e09a7fb9dc944be593387aaa84192be6f6e8e67c24d1c88fc996c01de6fc2d0aa51b42e7541e36431cd1fd91e6f734e416afc1a90
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-compute_v1
2
2
 
3
+ ### v0.63.0 (2023-03-05)
4
+
5
+ * Regenerated from discovery document revision 20230221
6
+
3
7
  ### v0.62.0 (2023-02-19)
4
8
 
5
9
  * Regenerated from discovery document revision 20230210
@@ -467,7 +467,7 @@ module Google
467
467
  # The first IPv6 address of the external IPv6 range associated with this
468
468
  # instance, prefix length is stored in externalIpv6PrefixLength in
469
469
  # ipv6AccessConfig. To use a static external IP address, it must be unused and
470
- # in the same region as the instance's zone. If not specified, GCP will
470
+ # in the same region as the instance's zone. If not specified, Google Cloud will
471
471
  # automatically assign an external IPv6 address from the instance's subnetwork.
472
472
  # Corresponds to the JSON property `externalIpv6`
473
473
  # @return [String]
@@ -8759,6 +8759,15 @@ module Google
8759
8759
  # @return [String]
8760
8760
  attr_accessor :backend_service
8761
8761
 
8762
+ # [Output Only] The URL for the corresponding base Forwarding Rule. By base
8763
+ # Forwarding Rule, we mean the Forwarding Rule that has the same IP address,
8764
+ # protocol, and port settings with the current Forwarding Rule, but without
8765
+ # sourceIPRanges specified. Always empty if the current Forwarding Rule does not
8766
+ # have sourceIPRanges specified.
8767
+ # Corresponds to the JSON property `baseForwardingRule`
8768
+ # @return [String]
8769
+ attr_accessor :base_forwarding_rule
8770
+
8762
8771
  # [Output Only] Creation timestamp in RFC3339 text format.
8763
8772
  # Corresponds to the JSON property `creationTimestamp`
8764
8773
  # @return [String]
@@ -8973,6 +8982,16 @@ module Google
8973
8982
  # @return [String]
8974
8983
  attr_accessor :service_name
8975
8984
 
8985
+ # If not empty, this Forwarding Rule will only forward the traffic when the
8986
+ # source IP address matches one of the IP addresses or CIDR ranges set here.
8987
+ # Note that a Forwarding Rule can only have up to 64 source IP ranges, and this
8988
+ # field can only be used with a regional Forwarding Rule whose scheme is
8989
+ # EXTERNAL. Each source_ip_range entry should be either an IP address (for
8990
+ # example, 1.2.3.4) or a CIDR range (for example, 1.2.3.0/24).
8991
+ # Corresponds to the JSON property `sourceIpRanges`
8992
+ # @return [Array<String>]
8993
+ attr_accessor :source_ip_ranges
8994
+
8976
8995
  # This field identifies the subnetwork that the load balanced IP should belong
8977
8996
  # to for this Forwarding Rule, used in internal load balancing and network load
8978
8997
  # balancing with IPv6. If the network specified is in auto subnet mode, this
@@ -9008,6 +9027,7 @@ module Google
9008
9027
  @all_ports = args[:all_ports] if args.key?(:all_ports)
9009
9028
  @allow_global_access = args[:allow_global_access] if args.key?(:allow_global_access)
9010
9029
  @backend_service = args[:backend_service] if args.key?(:backend_service)
9030
+ @base_forwarding_rule = args[:base_forwarding_rule] if args.key?(:base_forwarding_rule)
9011
9031
  @creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
9012
9032
  @description = args[:description] if args.key?(:description)
9013
9033
  @fingerprint = args[:fingerprint] if args.key?(:fingerprint)
@@ -9032,6 +9052,7 @@ module Google
9032
9052
  @service_directory_registrations = args[:service_directory_registrations] if args.key?(:service_directory_registrations)
9033
9053
  @service_label = args[:service_label] if args.key?(:service_label)
9034
9054
  @service_name = args[:service_name] if args.key?(:service_name)
9055
+ @source_ip_ranges = args[:source_ip_ranges] if args.key?(:source_ip_ranges)
9035
9056
  @subnetwork = args[:subnetwork] if args.key?(:subnetwork)
9036
9057
  @target = args[:target] if args.key?(:target)
9037
9058
  end
@@ -16730,9 +16751,7 @@ module Google
16730
16751
  # @return [Fixnum]
16731
16752
  attr_accessor :requested_link_count
16732
16753
 
16733
- # [Output Only] Set to true if the resource satisfies the zone separation
16734
- # organization policy constraints and false otherwise. Defaults to false if the
16735
- # field is not present.
16754
+ # [Output Only] Reserved for future use.
16736
16755
  # Corresponds to the JSON property `satisfiesPzs`
16737
16756
  # @return [Boolean]
16738
16757
  attr_accessor :satisfies_pzs
@@ -17016,9 +17035,7 @@ module Google
17016
17035
  # @return [String]
17017
17036
  attr_accessor :router
17018
17037
 
17019
- # [Output Only] Set to true if the resource satisfies the zone separation
17020
- # organization policy constraints and false otherwise. Defaults to false if the
17021
- # field is not present.
17038
+ # [Output Only] Reserved for future use.
17022
17039
  # Corresponds to the JSON property `satisfiesPzs`
17023
17040
  # @return [Boolean]
17024
17041
  attr_accessor :satisfies_pzs
@@ -17953,8 +17970,7 @@ module Google
17953
17970
  # @return [String]
17954
17971
  attr_accessor :status
17955
17972
 
17956
- # [Output Only] Set to true for locations that support physical zone separation.
17957
- # Defaults to false if the field is not present.
17973
+ # [Output Only] Reserved for future use.
17958
17974
  # Corresponds to the JSON property `supportsPzs`
17959
17975
  # @return [Boolean]
17960
17976
  attr_accessor :supports_pzs
@@ -21940,8 +21956,8 @@ module Google
21940
21956
 
21941
21957
  # An IPv6 internal network address for this network interface. To use a static
21942
21958
  # internal IP address, it must be unused and in the same region as the instance'
21943
- # s zone. If not specified, GCP will automatically assign an internal IPv6
21944
- # address from the instance's subnetwork.
21959
+ # s zone. If not specified, Google Cloud will automatically assign an internal
21960
+ # IPv6 address from the instance's subnetwork.
21945
21961
  # Corresponds to the JSON property `ipv6Address`
21946
21962
  # @return [String]
21947
21963
  attr_accessor :ipv6_address
@@ -23335,10 +23351,7 @@ module Google
23335
23351
  # @return [String]
23336
23352
  attr_accessor :node_type
23337
23353
 
23338
- # The flexible properties of the desired node type. Node groups that use this
23339
- # node template will create nodes of a type that matches these properties. This
23340
- # field is mutually exclusive with the node_type property; you can only define
23341
- # one or the other, but not both.
23354
+ # Do not use. Instead, use the node_type property.
23342
23355
  # Corresponds to the JSON property `nodeTypeFlexibility`
23343
23356
  # @return [Google::Apis::ComputeV1::NodeTemplateNodeTypeFlexibility]
23344
23357
  attr_accessor :node_type_flexibility
@@ -29984,7 +29997,7 @@ module Google
29984
29997
  attr_accessor :start_time
29985
29998
 
29986
29999
  # Specifies the time zone to be used in interpreting Schedule.schedule. The
29987
- # value of this field must be a time zone name from the tz database: http://en.
30000
+ # value of this field must be a time zone name from the tz database: https://
29988
30001
  # wikipedia.org/wiki/Tz_database.
29989
30002
  # Corresponds to the JSON property `timeZone`
29990
30003
  # @return [String]
@@ -31121,10 +31134,10 @@ module Google
31121
31134
  # @return [String]
31122
31135
  attr_accessor :advertise_mode
31123
31136
 
31124
- # User-specified list of prefix groups to advertise in custom mode, which can
31125
- # take one of the following options: - ALL_SUBNETS: Advertises all available
31126
- # subnets, including peer VPC subnets. - ALL_VPC_SUBNETS: Advertises the router'
31127
- # s own VPC subnets. Note that this field can only be populated if
31137
+ # User-specified list of prefix groups to advertise in custom mode, which
31138
+ # currently supports the following option: - ALL_SUBNETS: Advertises all of the
31139
+ # router's own VPC subnets. This excludes any routes learned for subnets that
31140
+ # use VPC Network Peering. Note that this field can only be populated if
31128
31141
  # advertise_mode is CUSTOM and overrides the list defined for the router (in the
31129
31142
  # "bgp" message). These groups are advertised in addition to any specified
31130
31143
  # prefixes. Leave this field blank to advertise no custom groups.
@@ -33452,6 +33465,13 @@ module Google
33452
33465
  # @return [Google::Apis::ComputeV1::SecurityPolicyRuleMatcher]
33453
33466
  attr_accessor :match
33454
33467
 
33468
+ # Preconfigured WAF configuration to be applied for the rule. If the rule does
33469
+ # not evaluate preconfigured WAF rules, i.e., if evaluatePreconfiguredWaf() is
33470
+ # not used, this field will have no effect.
33471
+ # Corresponds to the JSON property `preconfiguredWafConfig`
33472
+ # @return [Google::Apis::ComputeV1::SecurityPolicyRulePreconfiguredWafConfig]
33473
+ attr_accessor :preconfigured_waf_config
33474
+
33455
33475
  # If set to true, the specified action is not enforced.
33456
33476
  # Corresponds to the JSON property `preview`
33457
33477
  # @return [Boolean]
@@ -33489,6 +33509,7 @@ module Google
33489
33509
  @header_action = args[:header_action] if args.key?(:header_action)
33490
33510
  @kind = args[:kind] if args.key?(:kind)
33491
33511
  @match = args[:match] if args.key?(:match)
33512
+ @preconfigured_waf_config = args[:preconfigured_waf_config] if args.key?(:preconfigured_waf_config)
33492
33513
  @preview = args[:preview] if args.key?(:preview)
33493
33514
  @priority = args[:priority] if args.key?(:priority)
33494
33515
  @rate_limit_options = args[:rate_limit_options] if args.key?(:rate_limit_options)
@@ -33610,6 +33631,107 @@ module Google
33610
33631
  end
33611
33632
  end
33612
33633
 
33634
+ #
33635
+ class SecurityPolicyRulePreconfiguredWafConfig
33636
+ include Google::Apis::Core::Hashable
33637
+
33638
+ # A list of exclusions to apply during preconfigured WAF evaluation.
33639
+ # Corresponds to the JSON property `exclusions`
33640
+ # @return [Array<Google::Apis::ComputeV1::SecurityPolicyRulePreconfiguredWafConfigExclusion>]
33641
+ attr_accessor :exclusions
33642
+
33643
+ def initialize(**args)
33644
+ update!(**args)
33645
+ end
33646
+
33647
+ # Update properties of this object
33648
+ def update!(**args)
33649
+ @exclusions = args[:exclusions] if args.key?(:exclusions)
33650
+ end
33651
+ end
33652
+
33653
+ #
33654
+ class SecurityPolicyRulePreconfiguredWafConfigExclusion
33655
+ include Google::Apis::Core::Hashable
33656
+
33657
+ # A list of request cookie names whose value will be excluded from inspection
33658
+ # during preconfigured WAF evaluation.
33659
+ # Corresponds to the JSON property `requestCookiesToExclude`
33660
+ # @return [Array<Google::Apis::ComputeV1::SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams>]
33661
+ attr_accessor :request_cookies_to_exclude
33662
+
33663
+ # A list of request header names whose value will be excluded from inspection
33664
+ # during preconfigured WAF evaluation.
33665
+ # Corresponds to the JSON property `requestHeadersToExclude`
33666
+ # @return [Array<Google::Apis::ComputeV1::SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams>]
33667
+ attr_accessor :request_headers_to_exclude
33668
+
33669
+ # A list of request query parameter names whose value will be excluded from
33670
+ # inspection during preconfigured WAF evaluation. Note that the parameter can be
33671
+ # in the query string or in the POST body.
33672
+ # Corresponds to the JSON property `requestQueryParamsToExclude`
33673
+ # @return [Array<Google::Apis::ComputeV1::SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams>]
33674
+ attr_accessor :request_query_params_to_exclude
33675
+
33676
+ # A list of request URIs from the request line to be excluded from inspection
33677
+ # during preconfigured WAF evaluation. When specifying this field, the query or
33678
+ # fragment part should be excluded.
33679
+ # Corresponds to the JSON property `requestUrisToExclude`
33680
+ # @return [Array<Google::Apis::ComputeV1::SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams>]
33681
+ attr_accessor :request_uris_to_exclude
33682
+
33683
+ # A list of target rule IDs under the WAF rule set to apply the preconfigured
33684
+ # WAF exclusion. If omitted, it refers to all the rule IDs under the WAF rule
33685
+ # set.
33686
+ # Corresponds to the JSON property `targetRuleIds`
33687
+ # @return [Array<String>]
33688
+ attr_accessor :target_rule_ids
33689
+
33690
+ # Target WAF rule set to apply the preconfigured WAF exclusion.
33691
+ # Corresponds to the JSON property `targetRuleSet`
33692
+ # @return [String]
33693
+ attr_accessor :target_rule_set
33694
+
33695
+ def initialize(**args)
33696
+ update!(**args)
33697
+ end
33698
+
33699
+ # Update properties of this object
33700
+ def update!(**args)
33701
+ @request_cookies_to_exclude = args[:request_cookies_to_exclude] if args.key?(:request_cookies_to_exclude)
33702
+ @request_headers_to_exclude = args[:request_headers_to_exclude] if args.key?(:request_headers_to_exclude)
33703
+ @request_query_params_to_exclude = args[:request_query_params_to_exclude] if args.key?(:request_query_params_to_exclude)
33704
+ @request_uris_to_exclude = args[:request_uris_to_exclude] if args.key?(:request_uris_to_exclude)
33705
+ @target_rule_ids = args[:target_rule_ids] if args.key?(:target_rule_ids)
33706
+ @target_rule_set = args[:target_rule_set] if args.key?(:target_rule_set)
33707
+ end
33708
+ end
33709
+
33710
+ #
33711
+ class SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams
33712
+ include Google::Apis::Core::Hashable
33713
+
33714
+ # The match operator for the field.
33715
+ # Corresponds to the JSON property `op`
33716
+ # @return [String]
33717
+ attr_accessor :op
33718
+
33719
+ # The value of the field.
33720
+ # Corresponds to the JSON property `val`
33721
+ # @return [String]
33722
+ attr_accessor :val
33723
+
33724
+ def initialize(**args)
33725
+ update!(**args)
33726
+ end
33727
+
33728
+ # Update properties of this object
33729
+ def update!(**args)
33730
+ @op = args[:op] if args.key?(:op)
33731
+ @val = args[:val] if args.key?(:val)
33732
+ end
33733
+ end
33734
+
33613
33735
  #
33614
33736
  class SecurityPolicyRuleRateLimitOptions
33615
33737
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ComputeV1
18
18
  # Version of the google-apis-compute_v1 gem
19
- GEM_VERSION = "0.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 = "20230210"
25
+ REVISION = "20230221"
26
26
  end
27
27
  end
28
28
  end
@@ -4384,6 +4384,24 @@ module Google
4384
4384
  include Google::Apis::Core::JsonObjectSupport
4385
4385
  end
4386
4386
 
4387
+ class SecurityPolicyRulePreconfiguredWafConfig
4388
+ class Representation < Google::Apis::Core::JsonRepresentation; end
4389
+
4390
+ include Google::Apis::Core::JsonObjectSupport
4391
+ end
4392
+
4393
+ class SecurityPolicyRulePreconfiguredWafConfigExclusion
4394
+ class Representation < Google::Apis::Core::JsonRepresentation; end
4395
+
4396
+ include Google::Apis::Core::JsonObjectSupport
4397
+ end
4398
+
4399
+ class SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams
4400
+ class Representation < Google::Apis::Core::JsonRepresentation; end
4401
+
4402
+ include Google::Apis::Core::JsonObjectSupport
4403
+ end
4404
+
4387
4405
  class SecurityPolicyRuleRateLimitOptions
4388
4406
  class Representation < Google::Apis::Core::JsonRepresentation; end
4389
4407
 
@@ -7752,6 +7770,7 @@ module Google
7752
7770
  property :all_ports, as: 'allPorts'
7753
7771
  property :allow_global_access, as: 'allowGlobalAccess'
7754
7772
  property :backend_service, as: 'backendService'
7773
+ property :base_forwarding_rule, as: 'baseForwardingRule'
7755
7774
  property :creation_timestamp, as: 'creationTimestamp'
7756
7775
  property :description, as: 'description'
7757
7776
  property :fingerprint, :base64 => true, as: 'fingerprint'
@@ -7778,6 +7797,7 @@ module Google
7778
7797
 
7779
7798
  property :service_label, as: 'serviceLabel'
7780
7799
  property :service_name, as: 'serviceName'
7800
+ collection :source_ip_ranges, as: 'sourceIpRanges'
7781
7801
  property :subnetwork, as: 'subnetwork'
7782
7802
  property :target, as: 'target'
7783
7803
  end
@@ -13939,6 +13959,8 @@ module Google
13939
13959
  property :kind, as: 'kind'
13940
13960
  property :match, as: 'match', class: Google::Apis::ComputeV1::SecurityPolicyRuleMatcher, decorator: Google::Apis::ComputeV1::SecurityPolicyRuleMatcher::Representation
13941
13961
 
13962
+ property :preconfigured_waf_config, as: 'preconfiguredWafConfig', class: Google::Apis::ComputeV1::SecurityPolicyRulePreconfiguredWafConfig, decorator: Google::Apis::ComputeV1::SecurityPolicyRulePreconfiguredWafConfig::Representation
13963
+
13942
13964
  property :preview, as: 'preview'
13943
13965
  property :priority, as: 'priority'
13944
13966
  property :rate_limit_options, as: 'rateLimitOptions', class: Google::Apis::ComputeV1::SecurityPolicyRuleRateLimitOptions, decorator: Google::Apis::ComputeV1::SecurityPolicyRuleRateLimitOptions::Representation
@@ -13982,6 +14004,38 @@ module Google
13982
14004
  end
13983
14005
  end
13984
14006
 
14007
+ class SecurityPolicyRulePreconfiguredWafConfig
14008
+ # @private
14009
+ class Representation < Google::Apis::Core::JsonRepresentation
14010
+ collection :exclusions, as: 'exclusions', class: Google::Apis::ComputeV1::SecurityPolicyRulePreconfiguredWafConfigExclusion, decorator: Google::Apis::ComputeV1::SecurityPolicyRulePreconfiguredWafConfigExclusion::Representation
14011
+
14012
+ end
14013
+ end
14014
+
14015
+ class SecurityPolicyRulePreconfiguredWafConfigExclusion
14016
+ # @private
14017
+ class Representation < Google::Apis::Core::JsonRepresentation
14018
+ collection :request_cookies_to_exclude, as: 'requestCookiesToExclude', class: Google::Apis::ComputeV1::SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams, decorator: Google::Apis::ComputeV1::SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams::Representation
14019
+
14020
+ collection :request_headers_to_exclude, as: 'requestHeadersToExclude', class: Google::Apis::ComputeV1::SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams, decorator: Google::Apis::ComputeV1::SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams::Representation
14021
+
14022
+ collection :request_query_params_to_exclude, as: 'requestQueryParamsToExclude', class: Google::Apis::ComputeV1::SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams, decorator: Google::Apis::ComputeV1::SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams::Representation
14023
+
14024
+ collection :request_uris_to_exclude, as: 'requestUrisToExclude', class: Google::Apis::ComputeV1::SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams, decorator: Google::Apis::ComputeV1::SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams::Representation
14025
+
14026
+ collection :target_rule_ids, as: 'targetRuleIds'
14027
+ property :target_rule_set, as: 'targetRuleSet'
14028
+ end
14029
+ end
14030
+
14031
+ class SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams
14032
+ # @private
14033
+ class Representation < Google::Apis::Core::JsonRepresentation
14034
+ property :op, as: 'op'
14035
+ property :val, as: 'val'
14036
+ end
14037
+ end
14038
+
13985
14039
  class SecurityPolicyRuleRateLimitOptions
13986
14040
  # @private
13987
14041
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -807,8 +807,7 @@ module Google
807
807
  execute_or_queue_command(command, &block)
808
808
  end
809
809
 
810
- # Returns the specified autoscaler resource. Gets a list of available
811
- # autoscalers by making a list() request.
810
+ # Returns the specified autoscaler resource.
812
811
  # @param [String] project
813
812
  # Project ID for this request.
814
813
  # @param [String] zone
@@ -1247,8 +1246,7 @@ module Google
1247
1246
  execute_or_queue_command(command, &block)
1248
1247
  end
1249
1248
 
1250
- # Returns the specified BackendBucket resource. Gets a list of available backend
1251
- # buckets by making a list() request.
1249
+ # Returns the specified BackendBucket resource.
1252
1250
  # @param [String] project
1253
1251
  # Project ID for this request.
1254
1252
  # @param [String] backend_bucket
@@ -1822,8 +1820,7 @@ module Google
1822
1820
  execute_or_queue_command(command, &block)
1823
1821
  end
1824
1822
 
1825
- # Returns the specified BackendService resource. Gets a list of available
1826
- # backend services.
1823
+ # Returns the specified BackendService resource.
1827
1824
  # @param [String] project
1828
1825
  # Project ID for this request.
1829
1826
  # @param [String] backend_service
@@ -2419,8 +2416,7 @@ module Google
2419
2416
  execute_or_queue_command(command, &block)
2420
2417
  end
2421
2418
 
2422
- # Returns the specified disk type. Gets a list of available disk types by making
2423
- # a list() request.
2419
+ # Returns the specified disk type.
2424
2420
  # @param [String] project
2425
2421
  # Project ID for this request.
2426
2422
  # @param [String] zone
@@ -2812,8 +2808,7 @@ module Google
2812
2808
  execute_or_queue_command(command, &block)
2813
2809
  end
2814
2810
 
2815
- # Returns a specified persistent disk. Gets a list of available persistent disks
2816
- # by making a list() request.
2811
+ # Returns the specified persistent disk.
2817
2812
  # @param [String] project
2818
2813
  # Project ID for this request.
2819
2814
  # @param [String] zone
@@ -4080,7 +4075,9 @@ module Google
4080
4075
  # Specifies a page token to use. Set `pageToken` to the `nextPageToken` returned
4081
4076
  # by a previous list request to get the next page of results.
4082
4077
  # @param [String] parent_id
4083
- # Parent ID for this request.
4078
+ # Parent ID for this request. The ID can be either be "folders/[FOLDER_ID]" if
4079
+ # the parent is a folder or "organizations/[ORGANIZATION_ID]" if the parent is
4080
+ # an organization.
4084
4081
  # @param [Boolean] return_partial_success
4085
4082
  # Opt-in for partial success behavior which provides partial results in case of
4086
4083
  # failure. The default value is false.
@@ -4156,7 +4153,9 @@ module Google
4156
4153
  # @param [String] firewall_policy
4157
4154
  # Name of the firewall policy to update.
4158
4155
  # @param [String] parent_id
4159
- # The new parent of the firewall policy.
4156
+ # The new parent of the firewall policy. The ID can be either be "folders/[
4157
+ # FOLDER_ID]" if the parent is a folder or "organizations/[ORGANIZATION_ID]" if
4158
+ # the parent is an organization.
4160
4159
  # @param [String] request_id
4161
4160
  # An optional request ID to identify requests. Specify a unique request ID so
4162
4161
  # that if you must retry your request, the server will know to ignore the
@@ -5324,8 +5323,7 @@ module Google
5324
5323
  execute_or_queue_command(command, &block)
5325
5324
  end
5326
5325
 
5327
- # Returns the specified address resource. Gets a list of available addresses by
5328
- # making a list() request.
5326
+ # Returns the specified address resource.
5329
5327
  # @param [String] project
5330
5328
  # Project ID for this request.
5331
5329
  # @param [String] address
@@ -6052,8 +6050,7 @@ module Google
6052
6050
  execute_or_queue_command(command, &block)
6053
6051
  end
6054
6052
 
6055
- # Returns the specified network endpoint group. Gets a list of available network
6056
- # endpoint groups by making a list() request.
6053
+ # Returns the specified network endpoint group.
6057
6054
  # @param [String] project
6058
6055
  # Project ID for this request.
6059
6056
  # @param [String] network_endpoint_group
@@ -7192,8 +7189,7 @@ module Google
7192
7189
  execute_or_queue_command(command, &block)
7193
7190
  end
7194
7191
 
7195
- # Returns the specified HealthCheck resource. Gets a list of available health
7196
- # checks by making a list() request.
7192
+ # Returns the specified HealthCheck resource.
7197
7193
  # @param [String] project
7198
7194
  # Project ID for this request.
7199
7195
  # @param [String] health_check
@@ -7515,8 +7511,7 @@ module Google
7515
7511
  execute_or_queue_command(command, &block)
7516
7512
  end
7517
7513
 
7518
- # Returns the specified HttpHealthCheck resource. Gets a list of available HTTP
7519
- # health checks by making a list() request.
7514
+ # Returns the specified HttpHealthCheck resource.
7520
7515
  # @param [String] project
7521
7516
  # Project ID for this request.
7522
7517
  # @param [String] http_health_check
@@ -7839,8 +7834,7 @@ module Google
7839
7834
  execute_or_queue_command(command, &block)
7840
7835
  end
7841
7836
 
7842
- # Returns the specified HttpsHealthCheck resource. Gets a list of available
7843
- # HTTPS health checks by making a list() request.
7837
+ # Returns the specified HttpsHealthCheck resource.
7844
7838
  # @param [String] project
7845
7839
  # Project ID for this request.
7846
7840
  # @param [String] https_health_check
@@ -8254,8 +8248,7 @@ module Google
8254
8248
  execute_or_queue_command(command, &block)
8255
8249
  end
8256
8250
 
8257
- # Returns the specified image. Gets a list of available images by making a list()
8258
- # request.
8251
+ # Returns the specified image.
8259
8252
  # @param [String] project
8260
8253
  # Project ID for this request.
8261
8254
  # @param [String] image
@@ -9104,8 +9097,7 @@ module Google
9104
9097
  execute_or_queue_command(command, &block)
9105
9098
  end
9106
9099
 
9107
- # Returns all of the details about the specified managed instance group. Gets a
9108
- # list of available managed instance groups by making a list() request.
9100
+ # Returns all of the details about the specified managed instance group.
9109
9101
  # @param [String] project
9110
9102
  # Project ID for this request.
9111
9103
  # @param [String] zone
@@ -10749,8 +10741,7 @@ module Google
10749
10741
  execute_or_queue_command(command, &block)
10750
10742
  end
10751
10743
 
10752
- # Returns the specified instance template. Gets a list of available instance
10753
- # templates by making a list() request.
10744
+ # Returns the specified instance template.
10754
10745
  # @param [String] project
10755
10746
  # Project ID for this request.
10756
10747
  # @param [String] instance_template
@@ -11526,8 +11517,7 @@ module Google
11526
11517
  execute_or_queue_command(command, &block)
11527
11518
  end
11528
11519
 
11529
- # Returns the specified Instance resource. Gets a list of available instances by
11530
- # making a list() request.
11520
+ # Returns the specified Instance resource.
11531
11521
  # @param [String] project
11532
11522
  # Project ID for this request.
11533
11523
  # @param [String] zone
@@ -14963,8 +14953,7 @@ module Google
14963
14953
  execute_or_queue_command(command, &block)
14964
14954
  end
14965
14955
 
14966
- # Returns the specified machine image. Gets a list of available machine images
14967
- # by making a list() request.
14956
+ # Returns the specified machine image.
14968
14957
  # @param [String] project
14969
14958
  # Project ID for this request.
14970
14959
  # @param [String] machine_image
@@ -15357,8 +15346,7 @@ module Google
15357
15346
  execute_or_queue_command(command, &block)
15358
15347
  end
15359
15348
 
15360
- # Returns the specified machine type. Gets a list of available machine types by
15361
- # making a list() request.
15349
+ # Returns the specified machine type.
15362
15350
  # @param [String] project
15363
15351
  # Project ID for this request.
15364
15352
  # @param [String] zone
@@ -16505,8 +16493,7 @@ module Google
16505
16493
  execute_or_queue_command(command, &block)
16506
16494
  end
16507
16495
 
16508
- # Returns the specified network endpoint group. Gets a list of available network
16509
- # endpoint groups by making a list() request.
16496
+ # Returns the specified network endpoint group.
16510
16497
  # @param [String] project
16511
16498
  # Project ID for this request.
16512
16499
  # @param [String] zone
@@ -17711,8 +17698,7 @@ module Google
17711
17698
  execute_or_queue_command(command, &block)
17712
17699
  end
17713
17700
 
17714
- # Returns the specified network. Gets a list of available networks by making a
17715
- # list() request.
17701
+ # Returns the specified network.
17716
17702
  # @param [String] project
17717
17703
  # Project ID for this request.
17718
17704
  # @param [String] network
@@ -19135,8 +19121,7 @@ module Google
19135
19121
  execute_or_queue_command(command, &block)
19136
19122
  end
19137
19123
 
19138
- # Returns the specified node template. Gets a list of available node templates
19139
- # by making a list() request.
19124
+ # Returns the specified node template.
19140
19125
  # @param [String] project
19141
19126
  # Project ID for this request.
19142
19127
  # @param [String] region
@@ -19541,8 +19526,7 @@ module Google
19541
19526
  execute_or_queue_command(command, &block)
19542
19527
  end
19543
19528
 
19544
- # Returns the specified node type. Gets a list of available node types by making
19545
- # a list() request.
19529
+ # Returns the specified node type.
19546
19530
  # @param [String] project
19547
19531
  # Project ID for this request.
19548
19532
  # @param [String] zone
@@ -22339,8 +22323,7 @@ module Google
22339
22323
  execute_or_queue_command(command, &block)
22340
22324
  end
22341
22325
 
22342
- # Returns the specified commitment resource. Gets a list of available
22343
- # commitments by making a list() request.
22326
+ # Returns the specified commitment resource.
22344
22327
  # @param [String] project
22345
22328
  # Project ID for this request.
22346
22329
  # @param [String] region
@@ -22581,8 +22564,7 @@ module Google
22581
22564
  execute_or_queue_command(command, &block)
22582
22565
  end
22583
22566
 
22584
- # Returns the specified regional disk type. Gets a list of available disk types
22585
- # by making a list() request.
22567
+ # Returns the specified regional disk type.
22586
22568
  # @param [String] project
22587
22569
  # Project ID for this request.
22588
22570
  # @param [String] region
@@ -23746,8 +23728,7 @@ module Google
23746
23728
  execute_or_queue_command(command, &block)
23747
23729
  end
23748
23730
 
23749
- # Returns the specified HealthCheck resource. Gets a list of available health
23750
- # checks by making a list() request.
23731
+ # Returns the specified HealthCheck resource.
23751
23732
  # @param [String] project
23752
23733
  # Project ID for this request.
23753
23734
  # @param [String] region
@@ -25573,8 +25554,7 @@ module Google
25573
25554
  execute_or_queue_command(command, &block)
25574
25555
  end
25575
25556
 
25576
- # Returns the specified instance template. Gets a list of available instance
25577
- # templates by making a list() request.
25557
+ # Returns the specified instance template.
25578
25558
  # @param [String] project
25579
25559
  # Project ID for this request.
25580
25560
  # @param [String] region
@@ -25860,8 +25840,7 @@ module Google
25860
25840
  execute_or_queue_command(command, &block)
25861
25841
  end
25862
25842
 
25863
- # Returns the specified network endpoint group. Gets a list of available network
25864
- # endpoint groups by making a list() request.
25843
+ # Returns the specified network endpoint group.
25865
25844
  # @param [String] project
25866
25845
  # Project ID for this request.
25867
25846
  # @param [String] region
@@ -28316,8 +28295,7 @@ module Google
28316
28295
  execute_or_queue_command(command, &block)
28317
28296
  end
28318
28297
 
28319
- # Returns the specified TargetHttpProxy resource in the specified region. Gets a
28320
- # list of available target HTTP proxies by making a list() request.
28298
+ # Returns the specified TargetHttpProxy resource in the specified region.
28321
28299
  # @param [String] project
28322
28300
  # Project ID for this request.
28323
28301
  # @param [String] region
@@ -28602,8 +28580,7 @@ module Google
28602
28580
  execute_or_queue_command(command, &block)
28603
28581
  end
28604
28582
 
28605
- # Returns the specified TargetHttpsProxy resource in the specified region. Gets
28606
- # a list of available target HTTP proxies by making a list() request.
28583
+ # Returns the specified TargetHttpsProxy resource in the specified region.
28607
28584
  # @param [String] project
28608
28585
  # Project ID for this request.
28609
28586
  # @param [String] region
@@ -29220,8 +29197,7 @@ module Google
29220
29197
  execute_or_queue_command(command, &block)
29221
29198
  end
29222
29199
 
29223
- # Returns the specified UrlMap resource. Gets a list of available URL maps by
29224
- # making a list() request.
29200
+ # Returns the specified UrlMap resource.
29225
29201
  # @param [String] project
29226
29202
  # Project ID for this request.
29227
29203
  # @param [String] region
@@ -29530,14 +29506,13 @@ module Google
29530
29506
  execute_or_queue_command(command, &block)
29531
29507
  end
29532
29508
 
29533
- # Returns the specified Region resource. Gets a list of available regions by
29534
- # making a list() request. To decrease latency for this method, you can
29535
- # optionally omit any unneeded information from the response by using a field
29536
- # mask. This practice is especially recommended for unused quota information (
29537
- # the `quotas` field). To exclude one or more fields, set your request's `fields`
29538
- # query parameter to only include the fields you need. For example, to only
29539
- # include the `id` and `selfLink` fields, add the query parameter `?fields=id,
29540
- # selfLink` to your request.
29509
+ # Returns the specified Region resource. To decrease latency for this method,
29510
+ # you can optionally omit any unneeded information from the response by using a
29511
+ # field mask. This practice is especially recommended for unused quota
29512
+ # information (the `quotas` field). To exclude one or more fields, set your
29513
+ # request's `fields` query parameter to only include the fields you need. For
29514
+ # example, to only include the `id` and `selfLink` fields, add the query
29515
+ # parameter `?fields=id,selfLink` to your request.
29541
29516
  # @param [String] project
29542
29517
  # Project ID for this request.
29543
29518
  # @param [String] region
@@ -30837,8 +30812,7 @@ module Google
30837
30812
  execute_or_queue_command(command, &block)
30838
30813
  end
30839
30814
 
30840
- # Returns the specified Router resource. Gets a list of available routers by
30841
- # making a list() request.
30815
+ # Returns the specified Router resource.
30842
30816
  # @param [String] project
30843
30817
  # Project ID for this request.
30844
30818
  # @param [String] region
@@ -31354,8 +31328,7 @@ module Google
31354
31328
  execute_or_queue_command(command, &block)
31355
31329
  end
31356
31330
 
31357
- # Returns the specified Route resource. Gets a list of available routes by
31358
- # making a list() request.
31331
+ # Returns the specified Route resource.
31359
31332
  # @param [String] project
31360
31333
  # Project ID for this request.
31361
31334
  # @param [String] route
@@ -32756,8 +32729,7 @@ module Google
32756
32729
  execute_or_queue_command(command, &block)
32757
32730
  end
32758
32731
 
32759
- # Returns the specified Snapshot resource. Gets a list of available snapshots by
32760
- # making a list() request.
32732
+ # Returns the specified Snapshot resource.
32761
32733
  # @param [String] project
32762
32734
  # Project ID for this request.
32763
32735
  # @param [String] snapshot
@@ -33235,8 +33207,7 @@ module Google
33235
33207
  execute_or_queue_command(command, &block)
33236
33208
  end
33237
33209
 
33238
- # Returns the specified SslCertificate resource. Gets a list of available SSL
33239
- # certificates by making a list() request.
33210
+ # Returns the specified SslCertificate resource.
33240
33211
  # @param [String] project
33241
33212
  # Project ID for this request.
33242
33213
  # @param [String] ssl_certificate
@@ -33592,8 +33563,7 @@ module Google
33592
33563
  execute_or_queue_command(command, &block)
33593
33564
  end
33594
33565
 
33595
- # Returns the specified SSL policy resource. Gets a list of available SSL
33596
- # policies by making a list() request.
33566
+ # Returns the specified SSL policy resource.
33597
33567
  # @param [String] project
33598
33568
  # Project ID for this request.
33599
33569
  # @param [Google::Apis::ComputeV1::SslPolicy] ssl_policy_object
@@ -34067,8 +34037,7 @@ module Google
34067
34037
  execute_or_queue_command(command, &block)
34068
34038
  end
34069
34039
 
34070
- # Returns the specified subnetwork. Gets a list of available subnetworks list()
34071
- # request.
34040
+ # Returns the specified subnetwork.
34072
34041
  # @param [String] project
34073
34042
  # Project ID for this request.
34074
34043
  # @param [String] region
@@ -34999,8 +34968,7 @@ module Google
34999
34968
  execute_or_queue_command(command, &block)
35000
34969
  end
35001
34970
 
35002
- # Returns the specified TargetHttpProxy resource. Gets a list of available
35003
- # target HTTP proxies by making a list() request.
34971
+ # Returns the specified TargetHttpProxy resource.
35004
34972
  # @param [String] project
35005
34973
  # Project ID for this request.
35006
34974
  # @param [String] target_http_proxy
@@ -35419,8 +35387,7 @@ module Google
35419
35387
  execute_or_queue_command(command, &block)
35420
35388
  end
35421
35389
 
35422
- # Returns the specified TargetHttpsProxy resource. Gets a list of available
35423
- # target HTTPS proxies by making a list() request.
35390
+ # Returns the specified TargetHttpsProxy resource.
35424
35391
  # @param [String] project
35425
35392
  # Project ID for this request.
35426
35393
  # @param [String] target_https_proxy
@@ -36047,8 +36014,7 @@ module Google
36047
36014
  execute_or_queue_command(command, &block)
36048
36015
  end
36049
36016
 
36050
- # Returns the specified TargetInstance resource. Gets a list of available target
36051
- # instances by making a list() request.
36017
+ # Returns the specified TargetInstance resource.
36052
36018
  # @param [String] project
36053
36019
  # Project ID for this request.
36054
36020
  # @param [String] zone
@@ -36482,8 +36448,7 @@ module Google
36482
36448
  execute_or_queue_command(command, &block)
36483
36449
  end
36484
36450
 
36485
- # Returns the specified target pool. Gets a list of available target pools by
36486
- # making a list() request.
36451
+ # Returns the specified target pool.
36487
36452
  # @param [String] project
36488
36453
  # Project ID for this request.
36489
36454
  # @param [String] region
@@ -36916,8 +36881,7 @@ module Google
36916
36881
  execute_or_queue_command(command, &block)
36917
36882
  end
36918
36883
 
36919
- # Returns the specified TargetSslProxy resource. Gets a list of available target
36920
- # SSL proxies by making a list() request.
36884
+ # Returns the specified TargetSslProxy resource.
36921
36885
  # @param [String] project
36922
36886
  # Project ID for this request.
36923
36887
  # @param [String] target_ssl_proxy
@@ -37489,8 +37453,7 @@ module Google
37489
37453
  execute_or_queue_command(command, &block)
37490
37454
  end
37491
37455
 
37492
- # Returns the specified TargetTcpProxy resource. Gets a list of available target
37493
- # TCP proxies by making a list() request.
37456
+ # Returns the specified TargetTcpProxy resource.
37494
37457
  # @param [String] project
37495
37458
  # Project ID for this request.
37496
37459
  # @param [String] target_tcp_proxy
@@ -37909,8 +37872,7 @@ module Google
37909
37872
  execute_or_queue_command(command, &block)
37910
37873
  end
37911
37874
 
37912
- # Returns the specified target VPN gateway. Gets a list of available target VPN
37913
- # gateways by making a list() request.
37875
+ # Returns the specified target VPN gateway.
37914
37876
  # @param [String] project
37915
37877
  # Project ID for this request.
37916
37878
  # @param [String] region
@@ -38290,8 +38252,7 @@ module Google
38290
38252
  execute_or_queue_command(command, &block)
38291
38253
  end
38292
38254
 
38293
- # Returns the specified UrlMap resource. Gets a list of available URL maps by
38294
- # making a list() request.
38255
+ # Returns the specified UrlMap resource.
38295
38256
  # @param [String] project
38296
38257
  # Project ID for this request.
38297
38258
  # @param [String] url_map
@@ -38803,8 +38764,7 @@ module Google
38803
38764
  execute_or_queue_command(command, &block)
38804
38765
  end
38805
38766
 
38806
- # Returns the specified VPN gateway. Gets a list of available VPN gateways by
38807
- # making a list() request.
38767
+ # Returns the specified VPN gateway.
38808
38768
  # @param [String] project
38809
38769
  # Project ID for this request.
38810
38770
  # @param [String] region
@@ -39266,8 +39226,7 @@ module Google
39266
39226
  execute_or_queue_command(command, &block)
39267
39227
  end
39268
39228
 
39269
- # Returns the specified VpnTunnel resource. Gets a list of available VPN tunnels
39270
- # by making a list() request.
39229
+ # Returns the specified VpnTunnel resource.
39271
39230
  # @param [String] project
39272
39231
  # Project ID for this request.
39273
39232
  # @param [String] region
@@ -39718,8 +39677,7 @@ module Google
39718
39677
  execute_or_queue_command(command, &block)
39719
39678
  end
39720
39679
 
39721
- # Returns the specified Zone resource. Gets a list of available zones by making
39722
- # a list() request.
39680
+ # Returns the specified Zone resource.
39723
39681
  # @param [String] project
39724
39682
  # Project ID for this request.
39725
39683
  # @param [String] zone
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-compute_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.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-02-19 00:00:00.000000000 Z
11
+ date: 2023-03-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-compute_v1/v0.62.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-compute_v1/v0.63.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_v1
63
63
  post_install_message:
64
64
  rdoc_options: []