google-apis-compute_v1 0.76.0 → 0.77.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 992484af235c3975bcee3e3c7f8ae7c4def5d7abc48d26a4853a142a3ee1f362
|
4
|
+
data.tar.gz: 01b8ea4e4b096540217a0dad07953649bdfb4f4c0e945204e67f387f8a32112b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 598a9fda88989fe70e8523fd9a2d80040eff2ae67ba436239e6f198226d5ea46792000a7bef382964334e209f78ff92b5295180f617dd9d7018a961a1995c30f
|
7
|
+
data.tar.gz: d4268e21a53aaed102af245bd64af42eec7afd9ec82428d75e08c301c376788a56e8f22e6d1f1d9ba671b889cfb594f147ee40e7521d19b8ef6b6fe4dcac2af4
|
data/CHANGELOG.md
CHANGED
@@ -4930,6 +4930,50 @@ module Google
|
|
4930
4930
|
end
|
4931
4931
|
end
|
4932
4932
|
|
4933
|
+
#
|
4934
|
+
class BulkInsertOperationStatus
|
4935
|
+
include Google::Apis::Core::Hashable
|
4936
|
+
|
4937
|
+
# [Output Only] Count of VMs successfully created so far.
|
4938
|
+
# Corresponds to the JSON property `createdVmCount`
|
4939
|
+
# @return [Fixnum]
|
4940
|
+
attr_accessor :created_vm_count
|
4941
|
+
|
4942
|
+
# [Output Only] Count of VMs that got deleted during rollback.
|
4943
|
+
# Corresponds to the JSON property `deletedVmCount`
|
4944
|
+
# @return [Fixnum]
|
4945
|
+
attr_accessor :deleted_vm_count
|
4946
|
+
|
4947
|
+
# [Output Only] Count of VMs that started creating but encountered an error.
|
4948
|
+
# Corresponds to the JSON property `failedToCreateVmCount`
|
4949
|
+
# @return [Fixnum]
|
4950
|
+
attr_accessor :failed_to_create_vm_count
|
4951
|
+
|
4952
|
+
# [Output Only] Creation status of BulkInsert operation - information if the
|
4953
|
+
# flow is rolling forward or rolling back.
|
4954
|
+
# Corresponds to the JSON property `status`
|
4955
|
+
# @return [String]
|
4956
|
+
attr_accessor :status
|
4957
|
+
|
4958
|
+
# [Output Only] Count of VMs originally planned to be created.
|
4959
|
+
# Corresponds to the JSON property `targetVmCount`
|
4960
|
+
# @return [Fixnum]
|
4961
|
+
attr_accessor :target_vm_count
|
4962
|
+
|
4963
|
+
def initialize(**args)
|
4964
|
+
update!(**args)
|
4965
|
+
end
|
4966
|
+
|
4967
|
+
# Update properties of this object
|
4968
|
+
def update!(**args)
|
4969
|
+
@created_vm_count = args[:created_vm_count] if args.key?(:created_vm_count)
|
4970
|
+
@deleted_vm_count = args[:deleted_vm_count] if args.key?(:deleted_vm_count)
|
4971
|
+
@failed_to_create_vm_count = args[:failed_to_create_vm_count] if args.key?(:failed_to_create_vm_count)
|
4972
|
+
@status = args[:status] if args.key?(:status)
|
4973
|
+
@target_vm_count = args[:target_vm_count] if args.key?(:target_vm_count)
|
4974
|
+
end
|
4975
|
+
end
|
4976
|
+
|
4933
4977
|
#
|
4934
4978
|
class CacheInvalidationRule
|
4935
4979
|
include Google::Apis::Core::Hashable
|
@@ -6152,7 +6196,7 @@ module Google
|
|
6152
6196
|
# a persistent disk using the sourceImage, sourceSnapshot, or sourceDisk
|
6153
6197
|
# parameter, or specify it alone to create an empty persistent disk. If you
|
6154
6198
|
# specify this field along with a source, the value of sizeGb must not be less
|
6155
|
-
# than the size of the source. Acceptable values are
|
6199
|
+
# than the size of the source. Acceptable values are greater than 0.
|
6156
6200
|
# Corresponds to the JSON property `sizeGb`
|
6157
6201
|
# @return [Fixnum]
|
6158
6202
|
attr_accessor :size_gb
|
@@ -16744,6 +16788,26 @@ module Google
|
|
16744
16788
|
end
|
16745
16789
|
end
|
16746
16790
|
|
16791
|
+
#
|
16792
|
+
class InstancesBulkInsertOperationMetadata
|
16793
|
+
include Google::Apis::Core::Hashable
|
16794
|
+
|
16795
|
+
# Status information per location (location name is key). Example key: zones/us-
|
16796
|
+
# central1-a
|
16797
|
+
# Corresponds to the JSON property `perLocationStatus`
|
16798
|
+
# @return [Hash<String,Google::Apis::ComputeV1::BulkInsertOperationStatus>]
|
16799
|
+
attr_accessor :per_location_status
|
16800
|
+
|
16801
|
+
def initialize(**args)
|
16802
|
+
update!(**args)
|
16803
|
+
end
|
16804
|
+
|
16805
|
+
# Update properties of this object
|
16806
|
+
def update!(**args)
|
16807
|
+
@per_location_status = args[:per_location_status] if args.key?(:per_location_status)
|
16808
|
+
end
|
16809
|
+
end
|
16810
|
+
|
16747
16811
|
#
|
16748
16812
|
class InstancesGetEffectiveFirewallsResponse
|
16749
16813
|
include Google::Apis::Core::Hashable
|
@@ -17549,9 +17613,8 @@ module Google
|
|
17549
17613
|
attr_accessor :operational_status
|
17550
17614
|
|
17551
17615
|
# [Output only for type PARTNER. Input only for PARTNER_PROVIDER. Not present
|
17552
|
-
# for DEDICATED]. The opaque identifier of
|
17553
|
-
#
|
17554
|
-
# domain"
|
17616
|
+
# for DEDICATED]. The opaque identifier of a PARTNER attachment used to initiate
|
17617
|
+
# provisioning with a selected partner. Of the form "XXXXX/region/domain"
|
17555
17618
|
# Corresponds to the JSON property `pairingKey`
|
17556
17619
|
# @return [String]
|
17557
17620
|
attr_accessor :pairing_key
|
@@ -25623,6 +25686,11 @@ module Google
|
|
25623
25686
|
# @return [String]
|
25624
25687
|
attr_accessor :insert_time
|
25625
25688
|
|
25689
|
+
#
|
25690
|
+
# Corresponds to the JSON property `instancesBulkInsertOperationMetadata`
|
25691
|
+
# @return [Google::Apis::ComputeV1::InstancesBulkInsertOperationMetadata]
|
25692
|
+
attr_accessor :instances_bulk_insert_operation_metadata
|
25693
|
+
|
25626
25694
|
# [Output Only] Type of the resource. Always `compute#operation` for Operation
|
25627
25695
|
# resources.
|
25628
25696
|
# Corresponds to the JSON property `kind`
|
@@ -25735,6 +25803,7 @@ module Google
|
|
25735
25803
|
@http_error_status_code = args[:http_error_status_code] if args.key?(:http_error_status_code)
|
25736
25804
|
@id = args[:id] if args.key?(:id)
|
25737
25805
|
@insert_time = args[:insert_time] if args.key?(:insert_time)
|
25806
|
+
@instances_bulk_insert_operation_metadata = args[:instances_bulk_insert_operation_metadata] if args.key?(:instances_bulk_insert_operation_metadata)
|
25738
25807
|
@kind = args[:kind] if args.key?(:kind)
|
25739
25808
|
@name = args[:name] if args.key?(:name)
|
25740
25809
|
@operation_group_id = args[:operation_group_id] if args.key?(:operation_group_id)
|
@@ -32824,8 +32893,9 @@ module Google
|
|
32824
32893
|
class RouterNat
|
32825
32894
|
include Google::Apis::Core::Hashable
|
32826
32895
|
|
32827
|
-
# The network tier to use when automatically reserving IP addresses. Must be
|
32828
|
-
# of: PREMIUM, STANDARD. If not specified,
|
32896
|
+
# The network tier to use when automatically reserving NAT IP addresses. Must be
|
32897
|
+
# one of: PREMIUM, STANDARD. If not specified, then the current project-level
|
32898
|
+
# default tier is used.
|
32829
32899
|
# Corresponds to the JSON property `autoNetworkTier`
|
32830
32900
|
# @return [String]
|
32831
32901
|
attr_accessor :auto_network_tier
|
@@ -44289,12 +44359,12 @@ module Google
|
|
44289
44359
|
# @return [Fixnum]
|
44290
44360
|
attr_accessor :peer_external_gateway_interface
|
44291
44361
|
|
44292
|
-
# URL of the peer side HA
|
44362
|
+
# URL of the peer side HA VPN gateway to which this VPN tunnel is connected.
|
44293
44363
|
# Provided by the client when the VPN tunnel is created. This field can be used
|
44294
44364
|
# when creating highly available VPN from VPC network to VPC network, the field
|
44295
44365
|
# is exclusive with the field peerExternalGateway. If provided, the VPN tunnel
|
44296
|
-
# will automatically use the same vpnGatewayInterface ID in the peer
|
44297
|
-
# gateway.
|
44366
|
+
# will automatically use the same vpnGatewayInterface ID in the peer Google
|
44367
|
+
# Cloud VPN gateway.
|
44298
44368
|
# Corresponds to the JSON property `peerGcpGateway`
|
44299
44369
|
# @return [String]
|
44300
44370
|
attr_accessor :peer_gcp_gateway
|
@@ -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.77.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 = "
|
25
|
+
REVISION = "20230814"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -562,6 +562,12 @@ module Google
|
|
562
562
|
include Google::Apis::Core::JsonObjectSupport
|
563
563
|
end
|
564
564
|
|
565
|
+
class BulkInsertOperationStatus
|
566
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
567
|
+
|
568
|
+
include Google::Apis::Core::JsonObjectSupport
|
569
|
+
end
|
570
|
+
|
565
571
|
class CacheInvalidationRule
|
566
572
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
567
573
|
|
@@ -2032,6 +2038,12 @@ module Google
|
|
2032
2038
|
include Google::Apis::Core::JsonObjectSupport
|
2033
2039
|
end
|
2034
2040
|
|
2041
|
+
class InstancesBulkInsertOperationMetadata
|
2042
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2043
|
+
|
2044
|
+
include Google::Apis::Core::JsonObjectSupport
|
2045
|
+
end
|
2046
|
+
|
2035
2047
|
class InstancesGetEffectiveFirewallsResponse
|
2036
2048
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2037
2049
|
|
@@ -7060,6 +7072,17 @@ module Google
|
|
7060
7072
|
end
|
7061
7073
|
end
|
7062
7074
|
|
7075
|
+
class BulkInsertOperationStatus
|
7076
|
+
# @private
|
7077
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7078
|
+
property :created_vm_count, as: 'createdVmCount'
|
7079
|
+
property :deleted_vm_count, as: 'deletedVmCount'
|
7080
|
+
property :failed_to_create_vm_count, as: 'failedToCreateVmCount'
|
7081
|
+
property :status, as: 'status'
|
7082
|
+
property :target_vm_count, as: 'targetVmCount'
|
7083
|
+
end
|
7084
|
+
end
|
7085
|
+
|
7063
7086
|
class CacheInvalidationRule
|
7064
7087
|
# @private
|
7065
7088
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -9878,6 +9901,14 @@ module Google
|
|
9878
9901
|
end
|
9879
9902
|
end
|
9880
9903
|
|
9904
|
+
class InstancesBulkInsertOperationMetadata
|
9905
|
+
# @private
|
9906
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
9907
|
+
hash :per_location_status, as: 'perLocationStatus', class: Google::Apis::ComputeV1::BulkInsertOperationStatus, decorator: Google::Apis::ComputeV1::BulkInsertOperationStatus::Representation
|
9908
|
+
|
9909
|
+
end
|
9910
|
+
end
|
9911
|
+
|
9881
9912
|
class InstancesGetEffectiveFirewallsResponse
|
9882
9913
|
# @private
|
9883
9914
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -12121,6 +12152,8 @@ module Google
|
|
12121
12152
|
property :http_error_status_code, as: 'httpErrorStatusCode'
|
12122
12153
|
property :id, :numeric_string => true, as: 'id'
|
12123
12154
|
property :insert_time, as: 'insertTime'
|
12155
|
+
property :instances_bulk_insert_operation_metadata, as: 'instancesBulkInsertOperationMetadata', class: Google::Apis::ComputeV1::InstancesBulkInsertOperationMetadata, decorator: Google::Apis::ComputeV1::InstancesBulkInsertOperationMetadata::Representation
|
12156
|
+
|
12124
12157
|
property :kind, as: 'kind'
|
12125
12158
|
property :name, as: 'name'
|
12126
12159
|
property :operation_group_id, as: 'operationGroupId'
|
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.77.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-08-
|
11
|
+
date: 2023-08-27 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.77.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: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.4.
|
78
|
+
rubygems_version: 3.4.19
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Compute Engine API V1
|