google-apis-compute_v1 0.87.0 → 0.88.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 056e7cb0bde8c4be0383a22a51599db22faeeed7f75fb5832c9da8c0f5b54234
|
4
|
+
data.tar.gz: b1ce22308ba85a64b03045aeff88da2dee82b8435af980932e24de41c7edf996
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 563fe39d6253d14bba46485e6ba7c27507c9da3f26b8a881c99a19cda17ec5b1cb2c0bb206c78e6bf2f05d4d598eb4d2cb776cba34b0ff24a75ebb66b6445703
|
7
|
+
data.tar.gz: f9afb83adc733cc123b2ff4e1f99956cbe6794ff79865dbe3a48fd84dc80175e9db165297cbe6bbff04a4a569cf70f5bf410daf097c382a4b3f6139df6edc6a8
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-compute_v1
|
2
2
|
|
3
|
+
### v0.88.0 (2024-02-04)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240129
|
6
|
+
* Regenerated using generator version 0.13.1
|
7
|
+
|
3
8
|
### v0.87.0 (2024-01-22)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20240109
|
@@ -5045,7 +5045,10 @@ module Google
|
|
5045
5045
|
attr_accessor :members
|
5046
5046
|
|
5047
5047
|
# Role that is assigned to the list of `members`, or principals. For example, `
|
5048
|
-
# roles/viewer`, `roles/editor`, or `roles/owner`.
|
5048
|
+
# roles/viewer`, `roles/editor`, or `roles/owner`. For an overview of the IAM
|
5049
|
+
# roles and permissions, see the [IAM documentation](https://cloud.google.com/
|
5050
|
+
# iam/docs/roles-overview). For a list of the available pre-defined roles, see [
|
5051
|
+
# here](https://cloud.google.com/iam/docs/understanding-roles).
|
5049
5052
|
# Corresponds to the JSON property `role`
|
5050
5053
|
# @return [String]
|
5051
5054
|
attr_accessor :role
|
@@ -9177,6 +9180,14 @@ module Google
|
|
9177
9180
|
# @return [Fixnum]
|
9178
9181
|
attr_accessor :rule_tuple_count
|
9179
9182
|
|
9183
|
+
# A fully-qualified URL of a SecurityProfile resource instance. Example: https://
|
9184
|
+
# networksecurity.googleapis.com/v1/projects/`project`/locations/`location`/
|
9185
|
+
# securityProfileGroups/my-security-profile-group Must be specified if action = '
|
9186
|
+
# apply_security_profile_group' and cannot be specified for other actions.
|
9187
|
+
# Corresponds to the JSON property `securityProfileGroup`
|
9188
|
+
# @return [String]
|
9189
|
+
attr_accessor :security_profile_group
|
9190
|
+
|
9180
9191
|
# A list of network resource URLs to which this rule applies. This field allows
|
9181
9192
|
# you to control which network's VMs get this rule. If this field is left blank,
|
9182
9193
|
# all VMs within the organization will receive the rule.
|
@@ -9202,6 +9213,14 @@ module Google
|
|
9202
9213
|
# @return [Array<String>]
|
9203
9214
|
attr_accessor :target_service_accounts
|
9204
9215
|
|
9216
|
+
# Boolean flag indicating if the traffic should be TLS decrypted. Can be set
|
9217
|
+
# only if action = 'apply_security_profile_group' and cannot be set for other
|
9218
|
+
# actions.
|
9219
|
+
# Corresponds to the JSON property `tlsInspect`
|
9220
|
+
# @return [Boolean]
|
9221
|
+
attr_accessor :tls_inspect
|
9222
|
+
alias_method :tls_inspect?, :tls_inspect
|
9223
|
+
|
9205
9224
|
def initialize(**args)
|
9206
9225
|
update!(**args)
|
9207
9226
|
end
|
@@ -9218,9 +9237,11 @@ module Google
|
|
9218
9237
|
@priority = args[:priority] if args.key?(:priority)
|
9219
9238
|
@rule_name = args[:rule_name] if args.key?(:rule_name)
|
9220
9239
|
@rule_tuple_count = args[:rule_tuple_count] if args.key?(:rule_tuple_count)
|
9240
|
+
@security_profile_group = args[:security_profile_group] if args.key?(:security_profile_group)
|
9221
9241
|
@target_resources = args[:target_resources] if args.key?(:target_resources)
|
9222
9242
|
@target_secure_tags = args[:target_secure_tags] if args.key?(:target_secure_tags)
|
9223
9243
|
@target_service_accounts = args[:target_service_accounts] if args.key?(:target_service_accounts)
|
9244
|
+
@tls_inspect = args[:tls_inspect] if args.key?(:tls_inspect)
|
9224
9245
|
end
|
9225
9246
|
end
|
9226
9247
|
|
@@ -22804,11 +22825,12 @@ module Google
|
|
22804
22825
|
# @return [String]
|
22805
22826
|
attr_accessor :fqdn
|
22806
22827
|
|
22807
|
-
# The name or a URL of
|
22808
|
-
#
|
22809
|
-
# must be in the same zone of network endpoint group (for zonal NEGs)
|
22810
|
-
# zone within the region of the NEG (for regional NEGs).
|
22811
|
-
#
|
22828
|
+
# The name or a URL of VM instance of this network endpoint. This field is
|
22829
|
+
# required for network endpoints of type GCE_VM_IP and GCE_VM_IP_PORT. The
|
22830
|
+
# instance must be in the same zone of network endpoint group (for zonal NEGs)
|
22831
|
+
# or in the zone within the region of the NEG (for regional NEGs). If the
|
22832
|
+
# ipAddress is specified, it must belongs to the VM instance. The name must be 1-
|
22833
|
+
# 63 characters long, and comply with RFC1035 or be a valid URL pointing to an
|
22812
22834
|
# existing instance.
|
22813
22835
|
# Corresponds to the JSON property `instance`
|
22814
22836
|
# @return [String]
|
@@ -22818,13 +22840,18 @@ module Google
|
|
22818
22840
|
# in Compute Engine (either the primary IP or as part of an aliased IP range).
|
22819
22841
|
# If the IP address is not specified, then the primary IP address for the VM
|
22820
22842
|
# instance in the network that the network endpoint group belongs to will be
|
22821
|
-
# used.
|
22843
|
+
# used. This field is redundant and need not be set for network endpoints of
|
22844
|
+
# type GCE_VM_IP. If set, it must be set to the primary internal IP address of
|
22845
|
+
# the attached VM instance that matches the subnetwork of the NEG. The primary
|
22846
|
+
# internal IP address from any NIC of a multi-NIC VM instance can be added to a
|
22847
|
+
# NEG as long as it matches the NEG subnetwork.
|
22822
22848
|
# Corresponds to the JSON property `ipAddress`
|
22823
22849
|
# @return [String]
|
22824
22850
|
attr_accessor :ip_address
|
22825
22851
|
|
22826
22852
|
# Optional port number of network endpoint. If not specified, the defaultPort
|
22827
|
-
# for the network endpoint group will be used.
|
22853
|
+
# for the network endpoint group will be used. This field can not be set for
|
22854
|
+
# network endpoints of type GCE_VM_IP.
|
22828
22855
|
# Corresponds to the JSON property `port`
|
22829
22856
|
# @return [Fixnum]
|
22830
22857
|
attr_accessor :port
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ComputeV1
|
18
18
|
# Version of the google-apis-compute_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.88.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.13.
|
22
|
+
GENERATOR_VERSION = "0.13.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240129"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -8257,10 +8257,12 @@ module Google
|
|
8257
8257
|
property :priority, as: 'priority'
|
8258
8258
|
property :rule_name, as: 'ruleName'
|
8259
8259
|
property :rule_tuple_count, as: 'ruleTupleCount'
|
8260
|
+
property :security_profile_group, as: 'securityProfileGroup'
|
8260
8261
|
collection :target_resources, as: 'targetResources'
|
8261
8262
|
collection :target_secure_tags, as: 'targetSecureTags', class: Google::Apis::ComputeV1::FirewallPolicyRuleSecureTag, decorator: Google::Apis::ComputeV1::FirewallPolicyRuleSecureTag::Representation
|
8262
8263
|
|
8263
8264
|
collection :target_service_accounts, as: 'targetServiceAccounts'
|
8265
|
+
property :tls_inspect, as: 'tlsInspect'
|
8264
8266
|
end
|
8265
8267
|
end
|
8266
8268
|
|
@@ -117,6 +117,8 @@ module Google
|
|
117
117
|
# Opt-in for partial success behavior which provides partial results in case of
|
118
118
|
# failure. The default value is false.
|
119
119
|
# @param [Fixnum] service_project_number
|
120
|
+
# The Shared VPC service project id or service project number for which
|
121
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
120
122
|
# @param [String] fields
|
121
123
|
# Selector specifying which fields to include in a partial response.
|
122
124
|
# @param [String] quota_user
|
@@ -348,6 +350,8 @@ module Google
|
|
348
350
|
# Opt-in for partial success behavior which provides partial results in case of
|
349
351
|
# failure. The default value is false.
|
350
352
|
# @param [Fixnum] service_project_number
|
353
|
+
# The Shared VPC service project id or service project number for which
|
354
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
351
355
|
# @param [String] fields
|
352
356
|
# Selector specifying which fields to include in a partial response.
|
353
357
|
# @param [String] quota_user
|
@@ -786,6 +790,8 @@ module Google
|
|
786
790
|
# Opt-in for partial success behavior which provides partial results in case of
|
787
791
|
# failure. The default value is false.
|
788
792
|
# @param [Fixnum] service_project_number
|
793
|
+
# The Shared VPC service project id or service project number for which
|
794
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
789
795
|
# @param [String] fields
|
790
796
|
# Selector specifying which fields to include in a partial response.
|
791
797
|
# @param [String] quota_user
|
@@ -1874,6 +1880,8 @@ module Google
|
|
1874
1880
|
# Opt-in for partial success behavior which provides partial results in case of
|
1875
1881
|
# failure. The default value is false.
|
1876
1882
|
# @param [Fixnum] service_project_number
|
1883
|
+
# The Shared VPC service project id or service project number for which
|
1884
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
1877
1885
|
# @param [String] fields
|
1878
1886
|
# Selector specifying which fields to include in a partial response.
|
1879
1887
|
# @param [String] quota_user
|
@@ -2702,6 +2710,8 @@ module Google
|
|
2702
2710
|
# Opt-in for partial success behavior which provides partial results in case of
|
2703
2711
|
# failure. The default value is false.
|
2704
2712
|
# @param [Fixnum] service_project_number
|
2713
|
+
# The Shared VPC service project id or service project number for which
|
2714
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
2705
2715
|
# @param [String] fields
|
2706
2716
|
# Selector specifying which fields to include in a partial response.
|
2707
2717
|
# @param [String] quota_user
|
@@ -2986,6 +2996,8 @@ module Google
|
|
2986
2996
|
# Opt-in for partial success behavior which provides partial results in case of
|
2987
2997
|
# failure. The default value is false.
|
2988
2998
|
# @param [Fixnum] service_project_number
|
2999
|
+
# The Shared VPC service project id or service project number for which
|
3000
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
2989
3001
|
# @param [String] fields
|
2990
3002
|
# Selector specifying which fields to include in a partial response.
|
2991
3003
|
# @param [String] quota_user
|
@@ -5384,6 +5396,8 @@ module Google
|
|
5384
5396
|
# Opt-in for partial success behavior which provides partial results in case of
|
5385
5397
|
# failure. The default value is false.
|
5386
5398
|
# @param [Fixnum] service_project_number
|
5399
|
+
# The Shared VPC service project id or service project number for which
|
5400
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
5387
5401
|
# @param [String] fields
|
5388
5402
|
# Selector specifying which fields to include in a partial response.
|
5389
5403
|
# @param [String] quota_user
|
@@ -6972,6 +6986,8 @@ module Google
|
|
6972
6986
|
# Opt-in for partial success behavior which provides partial results in case of
|
6973
6987
|
# failure. The default value is false.
|
6974
6988
|
# @param [Fixnum] service_project_number
|
6989
|
+
# The Shared VPC service project id or service project number for which
|
6990
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
6975
6991
|
# @param [String] fields
|
6976
6992
|
# Selector specifying which fields to include in a partial response.
|
6977
6993
|
# @param [String] quota_user
|
@@ -7709,6 +7725,8 @@ module Google
|
|
7709
7725
|
# Opt-in for partial success behavior which provides partial results in case of
|
7710
7726
|
# failure. The default value is false.
|
7711
7727
|
# @param [Fixnum] service_project_number
|
7728
|
+
# The Shared VPC service project id or service project number for which
|
7729
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
7712
7730
|
# @param [String] fields
|
7713
7731
|
# Selector specifying which fields to include in a partial response.
|
7714
7732
|
# @param [String] quota_user
|
@@ -9411,6 +9429,8 @@ module Google
|
|
9411
9429
|
# Opt-in for partial success behavior which provides partial results in case of
|
9412
9430
|
# failure. The default value is false.
|
9413
9431
|
# @param [Fixnum] service_project_number
|
9432
|
+
# The Shared VPC service project id or service project number for which
|
9433
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
9414
9434
|
# @param [String] fields
|
9415
9435
|
# Selector specifying which fields to include in a partial response.
|
9416
9436
|
# @param [String] quota_user
|
@@ -10729,6 +10749,8 @@ module Google
|
|
10729
10749
|
# Opt-in for partial success behavior which provides partial results in case of
|
10730
10750
|
# failure. The default value is false.
|
10731
10751
|
# @param [Fixnum] service_project_number
|
10752
|
+
# The Shared VPC service project id or service project number for which
|
10753
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
10732
10754
|
# @param [String] fields
|
10733
10755
|
# Selector specifying which fields to include in a partial response.
|
10734
10756
|
# @param [String] quota_user
|
@@ -11277,6 +11299,8 @@ module Google
|
|
11277
11299
|
# Opt-in for partial success behavior which provides partial results in case of
|
11278
11300
|
# failure. The default value is false.
|
11279
11301
|
# @param [Fixnum] service_project_number
|
11302
|
+
# The Shared VPC service project id or service project number for which
|
11303
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
11280
11304
|
# @param [String] fields
|
11281
11305
|
# Selector specifying which fields to include in a partial response.
|
11282
11306
|
# @param [String] quota_user
|
@@ -11833,6 +11857,8 @@ module Google
|
|
11833
11857
|
# Opt-in for partial success behavior which provides partial results in case of
|
11834
11858
|
# failure. The default value is false.
|
11835
11859
|
# @param [Fixnum] service_project_number
|
11860
|
+
# The Shared VPC service project id or service project number for which
|
11861
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
11836
11862
|
# @param [String] fields
|
11837
11863
|
# Selector specifying which fields to include in a partial response.
|
11838
11864
|
# @param [String] quota_user
|
@@ -14371,6 +14397,8 @@ module Google
|
|
14371
14397
|
# Opt-in for partial success behavior which provides partial results in case of
|
14372
14398
|
# failure. The default value is false.
|
14373
14399
|
# @param [Fixnum] service_project_number
|
14400
|
+
# The Shared VPC service project id or service project number for which
|
14401
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
14374
14402
|
# @param [String] fields
|
14375
14403
|
# Selector specifying which fields to include in a partial response.
|
14376
14404
|
# @param [String] quota_user
|
@@ -16237,6 +16265,8 @@ module Google
|
|
16237
16265
|
# Opt-in for partial success behavior which provides partial results in case of
|
16238
16266
|
# failure. The default value is false.
|
16239
16267
|
# @param [Fixnum] service_project_number
|
16268
|
+
# The Shared VPC service project id or service project number for which
|
16269
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
16240
16270
|
# @param [String] fields
|
16241
16271
|
# Selector specifying which fields to include in a partial response.
|
16242
16272
|
# @param [String] quota_user
|
@@ -16468,6 +16498,8 @@ module Google
|
|
16468
16498
|
# Opt-in for partial success behavior which provides partial results in case of
|
16469
16499
|
# failure. The default value is false.
|
16470
16500
|
# @param [Fixnum] service_project_number
|
16501
|
+
# The Shared VPC service project id or service project number for which
|
16502
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
16471
16503
|
# @param [String] fields
|
16472
16504
|
# Selector specifying which fields to include in a partial response.
|
16473
16505
|
# @param [String] quota_user
|
@@ -16986,6 +17018,8 @@ module Google
|
|
16986
17018
|
# Opt-in for partial success behavior which provides partial results in case of
|
16987
17019
|
# failure. The default value is false.
|
16988
17020
|
# @param [Fixnum] service_project_number
|
17021
|
+
# The Shared VPC service project id or service project number for which
|
17022
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
16989
17023
|
# @param [String] fields
|
16990
17024
|
# Selector specifying which fields to include in a partial response.
|
16991
17025
|
# @param [String] quota_user
|
@@ -17286,6 +17320,8 @@ module Google
|
|
17286
17320
|
# Opt-in for partial success behavior which provides partial results in case of
|
17287
17321
|
# failure. The default value is false.
|
17288
17322
|
# @param [Fixnum] service_project_number
|
17323
|
+
# The Shared VPC service project id or service project number for which
|
17324
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
17289
17325
|
# @param [String] fields
|
17290
17326
|
# Selector specifying which fields to include in a partial response.
|
17291
17327
|
# @param [String] quota_user
|
@@ -19323,6 +19359,8 @@ module Google
|
|
19323
19359
|
# Opt-in for partial success behavior which provides partial results in case of
|
19324
19360
|
# failure. The default value is false.
|
19325
19361
|
# @param [Fixnum] service_project_number
|
19362
|
+
# The Shared VPC service project id or service project number for which
|
19363
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
19326
19364
|
# @param [String] fields
|
19327
19365
|
# Selector specifying which fields to include in a partial response.
|
19328
19366
|
# @param [String] quota_user
|
@@ -20096,6 +20134,8 @@ module Google
|
|
20096
20134
|
# Opt-in for partial success behavior which provides partial results in case of
|
20097
20135
|
# failure. The default value is false.
|
20098
20136
|
# @param [Fixnum] service_project_number
|
20137
|
+
# The Shared VPC service project id or service project number for which
|
20138
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
20099
20139
|
# @param [String] fields
|
20100
20140
|
# Selector specifying which fields to include in a partial response.
|
20101
20141
|
# @param [String] quota_user
|
@@ -20555,6 +20595,8 @@ module Google
|
|
20555
20595
|
# Opt-in for partial success behavior which provides partial results in case of
|
20556
20596
|
# failure. The default value is false.
|
20557
20597
|
# @param [Fixnum] service_project_number
|
20598
|
+
# The Shared VPC service project id or service project number for which
|
20599
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
20558
20600
|
# @param [String] fields
|
20559
20601
|
# Selector specifying which fields to include in a partial response.
|
20560
20602
|
# @param [String] quota_user
|
@@ -20785,6 +20827,8 @@ module Google
|
|
20785
20827
|
# Opt-in for partial success behavior which provides partial results in case of
|
20786
20828
|
# failure. The default value is false.
|
20787
20829
|
# @param [Fixnum] service_project_number
|
20830
|
+
# The Shared VPC service project id or service project number for which
|
20831
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
20788
20832
|
# @param [String] fields
|
20789
20833
|
# Selector specifying which fields to include in a partial response.
|
20790
20834
|
# @param [String] quota_user
|
@@ -22266,6 +22310,8 @@ module Google
|
|
22266
22310
|
# Opt-in for partial success behavior which provides partial results in case of
|
22267
22311
|
# failure. The default value is false.
|
22268
22312
|
# @param [Fixnum] service_project_number
|
22313
|
+
# The Shared VPC service project id or service project number for which
|
22314
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
22269
22315
|
# @param [String] fields
|
22270
22316
|
# Selector specifying which fields to include in a partial response.
|
22271
22317
|
# @param [String] quota_user
|
@@ -23757,6 +23803,8 @@ module Google
|
|
23757
23803
|
# Opt-in for partial success behavior which provides partial results in case of
|
23758
23804
|
# failure. The default value is false.
|
23759
23805
|
# @param [Fixnum] service_project_number
|
23806
|
+
# The Shared VPC service project id or service project number for which
|
23807
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
23760
23808
|
# @param [String] fields
|
23761
23809
|
# Selector specifying which fields to include in a partial response.
|
23762
23810
|
# @param [String] quota_user
|
@@ -31891,6 +31939,8 @@ module Google
|
|
31891
31939
|
# Opt-in for partial success behavior which provides partial results in case of
|
31892
31940
|
# failure. The default value is false.
|
31893
31941
|
# @param [Fixnum] service_project_number
|
31942
|
+
# The Shared VPC service project id or service project number for which
|
31943
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
31894
31944
|
# @param [String] fields
|
31895
31945
|
# Selector specifying which fields to include in a partial response.
|
31896
31946
|
# @param [String] quota_user
|
@@ -32463,6 +32513,8 @@ module Google
|
|
32463
32513
|
# Opt-in for partial success behavior which provides partial results in case of
|
32464
32514
|
# failure. The default value is false.
|
32465
32515
|
# @param [Fixnum] service_project_number
|
32516
|
+
# The Shared VPC service project id or service project number for which
|
32517
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
32466
32518
|
# @param [String] fields
|
32467
32519
|
# Selector specifying which fields to include in a partial response.
|
32468
32520
|
# @param [String] quota_user
|
@@ -32978,6 +33030,8 @@ module Google
|
|
32978
33030
|
# Opt-in for partial success behavior which provides partial results in case of
|
32979
33031
|
# failure. The default value is false.
|
32980
33032
|
# @param [Fixnum] service_project_number
|
33033
|
+
# The Shared VPC service project id or service project number for which
|
33034
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
32981
33035
|
# @param [String] fields
|
32982
33036
|
# Selector specifying which fields to include in a partial response.
|
32983
33037
|
# @param [String] quota_user
|
@@ -33910,6 +33964,8 @@ module Google
|
|
33910
33964
|
# Opt-in for partial success behavior which provides partial results in case of
|
33911
33965
|
# failure. The default value is false.
|
33912
33966
|
# @param [Fixnum] service_project_number
|
33967
|
+
# The Shared VPC service project id or service project number for which
|
33968
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
33913
33969
|
# @param [String] fields
|
33914
33970
|
# Selector specifying which fields to include in a partial response.
|
33915
33971
|
# @param [String] quota_user
|
@@ -34546,6 +34602,8 @@ module Google
|
|
34546
34602
|
# Opt-in for partial success behavior which provides partial results in case of
|
34547
34603
|
# failure. The default value is false.
|
34548
34604
|
# @param [Fixnum] service_project_number
|
34605
|
+
# The Shared VPC service project id or service project number for which
|
34606
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
34549
34607
|
# @param [String] fields
|
34550
34608
|
# Selector specifying which fields to include in a partial response.
|
34551
34609
|
# @param [String] quota_user
|
@@ -35531,6 +35589,8 @@ module Google
|
|
35531
35589
|
# Opt-in for partial success behavior which provides partial results in case of
|
35532
35590
|
# failure. The default value is false.
|
35533
35591
|
# @param [Fixnum] service_project_number
|
35592
|
+
# The Shared VPC service project id or service project number for which
|
35593
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
35534
35594
|
# @param [String] fields
|
35535
35595
|
# Selector specifying which fields to include in a partial response.
|
35536
35596
|
# @param [String] quota_user
|
@@ -35852,6 +35912,8 @@ module Google
|
|
35852
35912
|
# Opt-in for partial success behavior which provides partial results in case of
|
35853
35913
|
# failure. The default value is false.
|
35854
35914
|
# @param [Fixnum] service_project_number
|
35915
|
+
# The Shared VPC service project id or service project number for which
|
35916
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
35855
35917
|
# @param [String] fields
|
35856
35918
|
# Selector specifying which fields to include in a partial response.
|
35857
35919
|
# @param [String] quota_user
|
@@ -36314,6 +36376,8 @@ module Google
|
|
36314
36376
|
# Opt-in for partial success behavior which provides partial results in case of
|
36315
36377
|
# failure. The default value is false.
|
36316
36378
|
# @param [Fixnum] service_project_number
|
36379
|
+
# The Shared VPC service project id or service project number for which
|
36380
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
36317
36381
|
# @param [String] fields
|
36318
36382
|
# Selector specifying which fields to include in a partial response.
|
36319
36383
|
# @param [String] quota_user
|
@@ -37307,6 +37371,8 @@ module Google
|
|
37307
37371
|
# Opt-in for partial success behavior which provides partial results in case of
|
37308
37372
|
# failure. The default value is false.
|
37309
37373
|
# @param [Fixnum] service_project_number
|
37374
|
+
# The Shared VPC service project id or service project number for which
|
37375
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
37310
37376
|
# @param [String] fields
|
37311
37377
|
# Selector specifying which fields to include in a partial response.
|
37312
37378
|
# @param [String] quota_user
|
@@ -37730,6 +37796,8 @@ module Google
|
|
37730
37796
|
# Opt-in for partial success behavior which provides partial results in case of
|
37731
37797
|
# failure. The default value is false.
|
37732
37798
|
# @param [Fixnum] service_project_number
|
37799
|
+
# The Shared VPC service project id or service project number for which
|
37800
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
37733
37801
|
# @param [String] fields
|
37734
37802
|
# Selector specifying which fields to include in a partial response.
|
37735
37803
|
# @param [String] quota_user
|
@@ -38358,6 +38426,8 @@ module Google
|
|
38358
38426
|
# Opt-in for partial success behavior which provides partial results in case of
|
38359
38427
|
# failure. The default value is false.
|
38360
38428
|
# @param [Fixnum] service_project_number
|
38429
|
+
# The Shared VPC service project id or service project number for which
|
38430
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
38361
38431
|
# @param [String] fields
|
38362
38432
|
# Selector specifying which fields to include in a partial response.
|
38363
38433
|
# @param [String] quota_user
|
@@ -38851,6 +38921,8 @@ module Google
|
|
38851
38921
|
# Opt-in for partial success behavior which provides partial results in case of
|
38852
38922
|
# failure. The default value is false.
|
38853
38923
|
# @param [Fixnum] service_project_number
|
38924
|
+
# The Shared VPC service project id or service project number for which
|
38925
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
38854
38926
|
# @param [String] fields
|
38855
38927
|
# Selector specifying which fields to include in a partial response.
|
38856
38928
|
# @param [String] quota_user
|
@@ -39919,6 +39991,8 @@ module Google
|
|
39919
39991
|
# Opt-in for partial success behavior which provides partial results in case of
|
39920
39992
|
# failure. The default value is false.
|
39921
39993
|
# @param [Fixnum] service_project_number
|
39994
|
+
# The Shared VPC service project id or service project number for which
|
39995
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
39922
39996
|
# @param [String] fields
|
39923
39997
|
# Selector specifying which fields to include in a partial response.
|
39924
39998
|
# @param [String] quota_user
|
@@ -40339,6 +40413,8 @@ module Google
|
|
40339
40413
|
# Opt-in for partial success behavior which provides partial results in case of
|
40340
40414
|
# failure. The default value is false.
|
40341
40415
|
# @param [Fixnum] service_project_number
|
40416
|
+
# The Shared VPC service project id or service project number for which
|
40417
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
40342
40418
|
# @param [String] fields
|
40343
40419
|
# Selector specifying which fields to include in a partial response.
|
40344
40420
|
# @param [String] quota_user
|
@@ -40726,6 +40802,8 @@ module Google
|
|
40726
40802
|
# Opt-in for partial success behavior which provides partial results in case of
|
40727
40803
|
# failure. The default value is false.
|
40728
40804
|
# @param [Fixnum] service_project_number
|
40805
|
+
# The Shared VPC service project id or service project number for which
|
40806
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
40729
40807
|
# @param [String] fields
|
40730
40808
|
# Selector specifying which fields to include in a partial response.
|
40731
40809
|
# @param [String] quota_user
|
@@ -41239,6 +41317,8 @@ module Google
|
|
41239
41317
|
# Opt-in for partial success behavior which provides partial results in case of
|
41240
41318
|
# failure. The default value is false.
|
41241
41319
|
# @param [Fixnum] service_project_number
|
41320
|
+
# The Shared VPC service project id or service project number for which
|
41321
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
41242
41322
|
# @param [String] fields
|
41243
41323
|
# Selector specifying which fields to include in a partial response.
|
41244
41324
|
# @param [String] quota_user
|
@@ -41705,6 +41785,8 @@ module Google
|
|
41705
41785
|
# Opt-in for partial success behavior which provides partial results in case of
|
41706
41786
|
# failure. The default value is false.
|
41707
41787
|
# @param [Fixnum] service_project_number
|
41788
|
+
# The Shared VPC service project id or service project number for which
|
41789
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
41708
41790
|
# @param [String] fields
|
41709
41791
|
# Selector specifying which fields to include in a partial response.
|
41710
41792
|
# @param [String] quota_user
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-compute_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.88.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: 2024-
|
11
|
+
date: 2024-02-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_v1/v0.88.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: []
|