google-cloud-vmware_engine-v1 0.10.0 → 1.0.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: 6fc894db606bb944f2a24730dbe1e39f4040c65f1307be8d8fb7de61f67c1ae8
4
- data.tar.gz: d50a966d13ebf3e525d325dba8dc683dd1ad53f0c62e4a0c01e92c21985ae2da
3
+ metadata.gz: 18bd4cec86ea70227a2f90bf4a828df92605b1e70351671b54fc5bf92512998d
4
+ data.tar.gz: 3a000d4b66e2caa9b31f9057941db8515d1b532f6882157474ec330b04477104
5
5
  SHA512:
6
- metadata.gz: 2dcd8e779ebbb5218b0479729168657f5d94dff61fa7c15968906ed956bd3b1178cb72d60d26e0987c7bb37d6401a2c9d46ed05a49ebafe3501b1918431f7494
7
- data.tar.gz: 2008db3ccf77c4aed2d716f164f57e019fd49d32eb90f9b687ccf529751073cbca8c8f769948423f04f25f4e8f25f9f02028f5498c63ca32f31eb014270f1837
6
+ metadata.gz: 65c9a4c1c4900c31576c20d9edd21c306e054f499a056d971af827c840400a566a0d5be778a4375cf8fd2755a3cdf85a2d08d3773f0e536a7fdd34cd034d6d49
7
+ data.tar.gz: e802d2f9c2383b072548ee24e8a475b7f5525b60297048398f3cec4bae19944211d10a581edffdabebdf05ca914d2805844bec2a6ec16816322594d6dea47289
data/README.md CHANGED
@@ -86,7 +86,7 @@ To browse ready to use code samples check [Google Cloud Samples](https://cloud.g
86
86
 
87
87
  ## Supported Ruby Versions
88
88
 
89
- This library is supported on Ruby 2.7+.
89
+ This library is supported on Ruby 3.0+.
90
90
 
91
91
  Google provides official support for Ruby versions that are actively supported
92
92
  by Ruby Core—that is, Ruby versions that are either in normal maintenance or
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module VmwareEngine
23
23
  module V1
24
- VERSION = "0.10.0"
24
+ VERSION = "1.0.0"
25
25
  end
26
26
  end
27
27
  end
@@ -8882,6 +8882,13 @@ module Google
8882
8882
  # * (`GRPC::Core::Channel`) a gRPC channel with included credentials
8883
8883
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
8884
8884
  # * (`nil`) indicating no credentials
8885
+ #
8886
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
8887
+ # external source for authentication to Google Cloud, you must validate it before
8888
+ # providing it to a Google API client library. Providing an unvalidated credential
8889
+ # configuration to Google APIs can compromise the security of your systems and data.
8890
+ # For more information, refer to [Validate credential configurations from external
8891
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
8885
8892
  # @return [::Object]
8886
8893
  # @!attribute [rw] scope
8887
8894
  # The OAuth scopes
@@ -640,6 +640,13 @@ module Google
640
640
  # * (`GRPC::Core::Channel`) a gRPC channel with included credentials
641
641
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
642
642
  # * (`nil`) indicating no credentials
643
+ #
644
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
645
+ # external source for authentication to Google Cloud, you must validate it before
646
+ # providing it to a Google API client library. Providing an unvalidated credential
647
+ # configuration to Google APIs can compromise the security of your systems and data.
648
+ # For more information, refer to [Validate credential configurations from external
649
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
643
650
  # @return [::Object]
644
651
  # @!attribute [rw] scope
645
652
  # The OAuth scopes
@@ -467,10 +467,10 @@ module Google
467
467
  # descending order based on the `name` value using `orderBy="name desc"`.
468
468
  # Currently, only ordering by `name` is supported.
469
469
  # @yield [result, operation] Access the result along with the TransportOperation object
470
- # @yieldparam result [::Google::Cloud::VmwareEngine::V1::ListPrivateCloudsResponse]
470
+ # @yieldparam result [::Gapic::Rest::PagedEnumerable<::Google::Cloud::VmwareEngine::V1::PrivateCloud>]
471
471
  # @yieldparam operation [::Gapic::Rest::TransportOperation]
472
472
  #
473
- # @return [::Google::Cloud::VmwareEngine::V1::ListPrivateCloudsResponse]
473
+ # @return [::Gapic::Rest::PagedEnumerable<::Google::Cloud::VmwareEngine::V1::PrivateCloud>]
474
474
  #
475
475
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
476
476
  #
@@ -522,7 +522,9 @@ module Google
522
522
  retry_policy: @config.retry_policy
523
523
 
524
524
  @vmware_engine_stub.list_private_clouds request, options do |result, operation|
525
+ result = ::Gapic::Rest::PagedEnumerable.new @vmware_engine_stub, :list_private_clouds, "private_clouds", request, result, options
525
526
  yield result, operation if block_given?
527
+ throw :response, result
526
528
  end
527
529
  rescue ::Gapic::Rest::Error => e
528
530
  raise ::Google::Cloud::Error.from_error(e)
@@ -1106,10 +1108,10 @@ module Google
1106
1108
  # descending order based on the `name` value using `orderBy="name desc"`.
1107
1109
  # Currently, only ordering by `name` is supported.
1108
1110
  # @yield [result, operation] Access the result along with the TransportOperation object
1109
- # @yieldparam result [::Google::Cloud::VmwareEngine::V1::ListClustersResponse]
1111
+ # @yieldparam result [::Gapic::Rest::PagedEnumerable<::Google::Cloud::VmwareEngine::V1::Cluster>]
1110
1112
  # @yieldparam operation [::Gapic::Rest::TransportOperation]
1111
1113
  #
1112
- # @return [::Google::Cloud::VmwareEngine::V1::ListClustersResponse]
1114
+ # @return [::Gapic::Rest::PagedEnumerable<::Google::Cloud::VmwareEngine::V1::Cluster>]
1113
1115
  #
1114
1116
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
1115
1117
  #
@@ -1161,7 +1163,9 @@ module Google
1161
1163
  retry_policy: @config.retry_policy
1162
1164
 
1163
1165
  @vmware_engine_stub.list_clusters request, options do |result, operation|
1166
+ result = ::Gapic::Rest::PagedEnumerable.new @vmware_engine_stub, :list_clusters, "clusters", request, result, options
1164
1167
  yield result, operation if block_given?
1168
+ throw :response, result
1165
1169
  end
1166
1170
  rescue ::Gapic::Rest::Error => e
1167
1171
  raise ::Google::Cloud::Error.from_error(e)
@@ -1815,10 +1819,10 @@ module Google
1815
1819
  # using `orderBy="name desc"`.
1816
1820
  # Currently, only ordering by `name` is supported.
1817
1821
  # @yield [result, operation] Access the result along with the TransportOperation object
1818
- # @yieldparam result [::Google::Cloud::VmwareEngine::V1::ListExternalAddressesResponse]
1822
+ # @yieldparam result [::Gapic::Rest::PagedEnumerable<::Google::Cloud::VmwareEngine::V1::ExternalAddress>]
1819
1823
  # @yieldparam operation [::Gapic::Rest::TransportOperation]
1820
1824
  #
1821
- # @return [::Google::Cloud::VmwareEngine::V1::ListExternalAddressesResponse]
1825
+ # @return [::Gapic::Rest::PagedEnumerable<::Google::Cloud::VmwareEngine::V1::ExternalAddress>]
1822
1826
  #
1823
1827
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
1824
1828
  #
@@ -1870,7 +1874,9 @@ module Google
1870
1874
  retry_policy: @config.retry_policy
1871
1875
 
1872
1876
  @vmware_engine_stub.list_external_addresses request, options do |result, operation|
1877
+ result = ::Gapic::Rest::PagedEnumerable.new @vmware_engine_stub, :list_external_addresses, "external_addresses", request, result, options
1873
1878
  yield result, operation if block_given?
1879
+ throw :response, result
1874
1880
  end
1875
1881
  rescue ::Gapic::Rest::Error => e
1876
1882
  raise ::Google::Cloud::Error.from_error(e)
@@ -2442,10 +2448,10 @@ module Google
2442
2448
  # When paginating, all other parameters provided to
2443
2449
  # `ListSubnetsRequest` must match the call that provided the page token.
2444
2450
  # @yield [result, operation] Access the result along with the TransportOperation object
2445
- # @yieldparam result [::Google::Cloud::VmwareEngine::V1::ListSubnetsResponse]
2451
+ # @yieldparam result [::Gapic::Rest::PagedEnumerable<::Google::Cloud::VmwareEngine::V1::Subnet>]
2446
2452
  # @yieldparam operation [::Gapic::Rest::TransportOperation]
2447
2453
  #
2448
- # @return [::Google::Cloud::VmwareEngine::V1::ListSubnetsResponse]
2454
+ # @return [::Gapic::Rest::PagedEnumerable<::Google::Cloud::VmwareEngine::V1::Subnet>]
2449
2455
  #
2450
2456
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
2451
2457
  #
@@ -2497,7 +2503,9 @@ module Google
2497
2503
  retry_policy: @config.retry_policy
2498
2504
 
2499
2505
  @vmware_engine_stub.list_subnets request, options do |result, operation|
2506
+ result = ::Gapic::Rest::PagedEnumerable.new @vmware_engine_stub, :list_subnets, "subnets", request, result, options
2500
2507
  yield result, operation if block_given?
2508
+ throw :response, result
2501
2509
  end
2502
2510
  rescue ::Gapic::Rest::Error => e
2503
2511
  raise ::Google::Cloud::Error.from_error(e)
@@ -2752,10 +2760,10 @@ module Google
2752
2760
  # using `orderBy="name desc"`.
2753
2761
  # Currently, only ordering by `name` is supported.
2754
2762
  # @yield [result, operation] Access the result along with the TransportOperation object
2755
- # @yieldparam result [::Google::Cloud::VmwareEngine::V1::ListExternalAccessRulesResponse]
2763
+ # @yieldparam result [::Gapic::Rest::PagedEnumerable<::Google::Cloud::VmwareEngine::V1::ExternalAccessRule>]
2756
2764
  # @yieldparam operation [::Gapic::Rest::TransportOperation]
2757
2765
  #
2758
- # @return [::Google::Cloud::VmwareEngine::V1::ListExternalAccessRulesResponse]
2766
+ # @return [::Gapic::Rest::PagedEnumerable<::Google::Cloud::VmwareEngine::V1::ExternalAccessRule>]
2759
2767
  #
2760
2768
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
2761
2769
  #
@@ -2807,7 +2815,9 @@ module Google
2807
2815
  retry_policy: @config.retry_policy
2808
2816
 
2809
2817
  @vmware_engine_stub.list_external_access_rules request, options do |result, operation|
2818
+ result = ::Gapic::Rest::PagedEnumerable.new @vmware_engine_stub, :list_external_access_rules, "external_access_rules", request, result, options
2810
2819
  yield result, operation if block_given?
2820
+ throw :response, result
2811
2821
  end
2812
2822
  rescue ::Gapic::Rest::Error => e
2813
2823
  raise ::Google::Cloud::Error.from_error(e)
@@ -3302,10 +3312,10 @@ module Google
3302
3312
  # using `orderBy="name desc"`.
3303
3313
  # Currently, only ordering by `name` is supported.
3304
3314
  # @yield [result, operation] Access the result along with the TransportOperation object
3305
- # @yieldparam result [::Google::Cloud::VmwareEngine::V1::ListLoggingServersResponse]
3315
+ # @yieldparam result [::Gapic::Rest::PagedEnumerable<::Google::Cloud::VmwareEngine::V1::LoggingServer>]
3306
3316
  # @yieldparam operation [::Gapic::Rest::TransportOperation]
3307
3317
  #
3308
- # @return [::Google::Cloud::VmwareEngine::V1::ListLoggingServersResponse]
3318
+ # @return [::Gapic::Rest::PagedEnumerable<::Google::Cloud::VmwareEngine::V1::LoggingServer>]
3309
3319
  #
3310
3320
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
3311
3321
  #
@@ -3357,7 +3367,9 @@ module Google
3357
3367
  retry_policy: @config.retry_policy
3358
3368
 
3359
3369
  @vmware_engine_stub.list_logging_servers request, options do |result, operation|
3370
+ result = ::Gapic::Rest::PagedEnumerable.new @vmware_engine_stub, :list_logging_servers, "logging_servers", request, result, options
3360
3371
  yield result, operation if block_given?
3372
+ throw :response, result
3361
3373
  end
3362
3374
  rescue ::Gapic::Rest::Error => e
3363
3375
  raise ::Google::Cloud::Error.from_error(e)
@@ -3843,10 +3855,10 @@ module Google
3843
3855
  # (name = "standard-72")
3844
3856
  # ```
3845
3857
  # @yield [result, operation] Access the result along with the TransportOperation object
3846
- # @yieldparam result [::Google::Cloud::VmwareEngine::V1::ListNodeTypesResponse]
3858
+ # @yieldparam result [::Gapic::Rest::PagedEnumerable<::Google::Cloud::VmwareEngine::V1::NodeType>]
3847
3859
  # @yieldparam operation [::Gapic::Rest::TransportOperation]
3848
3860
  #
3849
- # @return [::Google::Cloud::VmwareEngine::V1::ListNodeTypesResponse]
3861
+ # @return [::Gapic::Rest::PagedEnumerable<::Google::Cloud::VmwareEngine::V1::NodeType>]
3850
3862
  #
3851
3863
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
3852
3864
  #
@@ -3898,7 +3910,9 @@ module Google
3898
3910
  retry_policy: @config.retry_policy
3899
3911
 
3900
3912
  @vmware_engine_stub.list_node_types request, options do |result, operation|
3913
+ result = ::Gapic::Rest::PagedEnumerable.new @vmware_engine_stub, :list_node_types, "node_types", request, result, options
3901
3914
  yield result, operation if block_given?
3915
+ throw :response, result
3902
3916
  end
3903
3917
  rescue ::Gapic::Rest::Error => e
3904
3918
  raise ::Google::Cloud::Error.from_error(e)
@@ -4731,10 +4745,10 @@ module Google
4731
4745
  # using `orderBy="name desc"`.
4732
4746
  # Currently, only ordering by `name` is supported.
4733
4747
  # @yield [result, operation] Access the result along with the TransportOperation object
4734
- # @yieldparam result [::Google::Cloud::VmwareEngine::V1::ListNetworkPeeringsResponse]
4748
+ # @yieldparam result [::Gapic::Rest::PagedEnumerable<::Google::Cloud::VmwareEngine::V1::NetworkPeering>]
4735
4749
  # @yieldparam operation [::Gapic::Rest::TransportOperation]
4736
4750
  #
4737
- # @return [::Google::Cloud::VmwareEngine::V1::ListNetworkPeeringsResponse]
4751
+ # @return [::Gapic::Rest::PagedEnumerable<::Google::Cloud::VmwareEngine::V1::NetworkPeering>]
4738
4752
  #
4739
4753
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
4740
4754
  #
@@ -4786,7 +4800,9 @@ module Google
4786
4800
  retry_policy: @config.retry_policy
4787
4801
 
4788
4802
  @vmware_engine_stub.list_network_peerings request, options do |result, operation|
4803
+ result = ::Gapic::Rest::PagedEnumerable.new @vmware_engine_stub, :list_network_peerings, "network_peerings", request, result, options
4789
4804
  yield result, operation if block_given?
4805
+ throw :response, result
4790
4806
  end
4791
4807
  rescue ::Gapic::Rest::Error => e
4792
4808
  raise ::Google::Cloud::Error.from_error(e)
@@ -5396,10 +5412,10 @@ module Google
5396
5412
  # `ListHcxActivationKeys` must match the call that provided the page
5397
5413
  # token.
5398
5414
  # @yield [result, operation] Access the result along with the TransportOperation object
5399
- # @yieldparam result [::Google::Cloud::VmwareEngine::V1::ListHcxActivationKeysResponse]
5415
+ # @yieldparam result [::Gapic::Rest::PagedEnumerable<::Google::Cloud::VmwareEngine::V1::HcxActivationKey>]
5400
5416
  # @yieldparam operation [::Gapic::Rest::TransportOperation]
5401
5417
  #
5402
- # @return [::Google::Cloud::VmwareEngine::V1::ListHcxActivationKeysResponse]
5418
+ # @return [::Gapic::Rest::PagedEnumerable<::Google::Cloud::VmwareEngine::V1::HcxActivationKey>]
5403
5419
  #
5404
5420
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
5405
5421
  #
@@ -5451,7 +5467,9 @@ module Google
5451
5467
  retry_policy: @config.retry_policy
5452
5468
 
5453
5469
  @vmware_engine_stub.list_hcx_activation_keys request, options do |result, operation|
5470
+ result = ::Gapic::Rest::PagedEnumerable.new @vmware_engine_stub, :list_hcx_activation_keys, "hcx_activation_keys", request, result, options
5454
5471
  yield result, operation if block_given?
5472
+ throw :response, result
5455
5473
  end
5456
5474
  rescue ::Gapic::Rest::Error => e
5457
5475
  raise ::Google::Cloud::Error.from_error(e)
@@ -5689,10 +5707,10 @@ module Google
5689
5707
  # using `orderBy="name desc"`.
5690
5708
  # Currently, only ordering by `name` is supported.
5691
5709
  # @yield [result, operation] Access the result along with the TransportOperation object
5692
- # @yieldparam result [::Google::Cloud::VmwareEngine::V1::ListNetworkPoliciesResponse]
5710
+ # @yieldparam result [::Gapic::Rest::PagedEnumerable<::Google::Cloud::VmwareEngine::V1::NetworkPolicy>]
5693
5711
  # @yieldparam operation [::Gapic::Rest::TransportOperation]
5694
5712
  #
5695
- # @return [::Google::Cloud::VmwareEngine::V1::ListNetworkPoliciesResponse]
5713
+ # @return [::Gapic::Rest::PagedEnumerable<::Google::Cloud::VmwareEngine::V1::NetworkPolicy>]
5696
5714
  #
5697
5715
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
5698
5716
  #
@@ -5744,7 +5762,9 @@ module Google
5744
5762
  retry_policy: @config.retry_policy
5745
5763
 
5746
5764
  @vmware_engine_stub.list_network_policies request, options do |result, operation|
5765
+ result = ::Gapic::Rest::PagedEnumerable.new @vmware_engine_stub, :list_network_policies, "network_policies", request, result, options
5747
5766
  yield result, operation if block_given?
5767
+ throw :response, result
5748
5768
  end
5749
5769
  rescue ::Gapic::Rest::Error => e
5750
5770
  raise ::Google::Cloud::Error.from_error(e)
@@ -6171,10 +6191,10 @@ module Google
6171
6191
  # using `orderBy="name desc"`.
6172
6192
  # Currently, only ordering by `name` is supported.
6173
6193
  # @yield [result, operation] Access the result along with the TransportOperation object
6174
- # @yieldparam result [::Google::Cloud::VmwareEngine::V1::ListManagementDnsZoneBindingsResponse]
6194
+ # @yieldparam result [::Gapic::Rest::PagedEnumerable<::Google::Cloud::VmwareEngine::V1::ManagementDnsZoneBinding>]
6175
6195
  # @yieldparam operation [::Gapic::Rest::TransportOperation]
6176
6196
  #
6177
- # @return [::Google::Cloud::VmwareEngine::V1::ListManagementDnsZoneBindingsResponse]
6197
+ # @return [::Gapic::Rest::PagedEnumerable<::Google::Cloud::VmwareEngine::V1::ManagementDnsZoneBinding>]
6178
6198
  #
6179
6199
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
6180
6200
  #
@@ -6226,7 +6246,9 @@ module Google
6226
6246
  retry_policy: @config.retry_policy
6227
6247
 
6228
6248
  @vmware_engine_stub.list_management_dns_zone_bindings request, options do |result, operation|
6249
+ result = ::Gapic::Rest::PagedEnumerable.new @vmware_engine_stub, :list_management_dns_zone_bindings, "management_dns_zone_bindings", request, result, options
6229
6250
  yield result, operation if block_given?
6251
+ throw :response, result
6230
6252
  end
6231
6253
  rescue ::Gapic::Rest::Error => e
6232
6254
  raise ::Google::Cloud::Error.from_error(e)
@@ -7268,10 +7290,10 @@ module Google
7268
7290
  # using `orderBy="name desc"`.
7269
7291
  # Currently, only ordering by `name` is supported.
7270
7292
  # @yield [result, operation] Access the result along with the TransportOperation object
7271
- # @yieldparam result [::Google::Cloud::VmwareEngine::V1::ListVmwareEngineNetworksResponse]
7293
+ # @yieldparam result [::Gapic::Rest::PagedEnumerable<::Google::Cloud::VmwareEngine::V1::VmwareEngineNetwork>]
7272
7294
  # @yieldparam operation [::Gapic::Rest::TransportOperation]
7273
7295
  #
7274
- # @return [::Google::Cloud::VmwareEngine::V1::ListVmwareEngineNetworksResponse]
7296
+ # @return [::Gapic::Rest::PagedEnumerable<::Google::Cloud::VmwareEngine::V1::VmwareEngineNetwork>]
7275
7297
  #
7276
7298
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
7277
7299
  #
@@ -7323,7 +7345,9 @@ module Google
7323
7345
  retry_policy: @config.retry_policy
7324
7346
 
7325
7347
  @vmware_engine_stub.list_vmware_engine_networks request, options do |result, operation|
7348
+ result = ::Gapic::Rest::PagedEnumerable.new @vmware_engine_stub, :list_vmware_engine_networks, "vmware_engine_networks", request, result, options
7326
7349
  yield result, operation if block_given?
7350
+ throw :response, result
7327
7351
  end
7328
7352
  rescue ::Gapic::Rest::Error => e
7329
7353
  raise ::Google::Cloud::Error.from_error(e)
@@ -7601,10 +7625,10 @@ module Google
7601
7625
  # using `orderBy="name desc"`.
7602
7626
  # Currently, only ordering by `name` is supported.
7603
7627
  # @yield [result, operation] Access the result along with the TransportOperation object
7604
- # @yieldparam result [::Google::Cloud::VmwareEngine::V1::ListPrivateConnectionsResponse]
7628
+ # @yieldparam result [::Gapic::Rest::PagedEnumerable<::Google::Cloud::VmwareEngine::V1::PrivateConnection>]
7605
7629
  # @yieldparam operation [::Gapic::Rest::TransportOperation]
7606
7630
  #
7607
- # @return [::Google::Cloud::VmwareEngine::V1::ListPrivateConnectionsResponse]
7631
+ # @return [::Gapic::Rest::PagedEnumerable<::Google::Cloud::VmwareEngine::V1::PrivateConnection>]
7608
7632
  #
7609
7633
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
7610
7634
  #
@@ -7656,7 +7680,9 @@ module Google
7656
7680
  retry_policy: @config.retry_policy
7657
7681
 
7658
7682
  @vmware_engine_stub.list_private_connections request, options do |result, operation|
7683
+ result = ::Gapic::Rest::PagedEnumerable.new @vmware_engine_stub, :list_private_connections, "private_connections", request, result, options
7659
7684
  yield result, operation if block_given?
7685
+ throw :response, result
7660
7686
  end
7661
7687
  rescue ::Gapic::Rest::Error => e
7662
7688
  raise ::Google::Cloud::Error.from_error(e)
@@ -8331,6 +8357,13 @@ module Google
8331
8357
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
8332
8358
  # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
8333
8359
  # * (`nil`) indicating no credentials
8360
+ #
8361
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
8362
+ # external source for authentication to Google Cloud, you must validate it before
8363
+ # providing it to a Google API client library. Providing an unvalidated credential
8364
+ # configuration to Google APIs can compromise the security of your systems and data.
8365
+ # For more information, refer to [Validate credential configurations from external
8366
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
8334
8367
  # @return [::Object]
8335
8368
  # @!attribute [rw] scope
8336
8369
  # The OAuth scopes
@@ -502,6 +502,13 @@ module Google
502
502
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
503
503
  # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
504
504
  # * (`nil`) indicating no credentials
505
+ #
506
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
507
+ # external source for authentication to Google Cloud, you must validate it before
508
+ # providing it to a Google API client library. Providing an unvalidated credential
509
+ # configuration to Google APIs can compromise the security of your systems and data.
510
+ # For more information, refer to [Validate credential configurations from external
511
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
505
512
  # @return [::Object]
506
513
  # @!attribute [rw] scope
507
514
  # The OAuth scopes
@@ -409,6 +409,14 @@ module Google
409
409
  # @return [::Array<::String>]
410
410
  # An allowlist of the fully qualified names of RPCs that should be included
411
411
  # on public client surfaces.
412
+ # @!attribute [rw] generate_omitted_as_internal
413
+ # @return [::Boolean]
414
+ # Setting this to true indicates to the client generators that methods
415
+ # that would be excluded from the generation should instead be generated
416
+ # in a way that indicates these methods should not be consumed by
417
+ # end users. How this is expressed is up to individual language
418
+ # implementations to decide. Some examples may be: added annotations,
419
+ # obfuscated identifiers, or other language idiomatic patterns.
412
420
  class SelectiveGapicGeneration
413
421
  include ::Google::Protobuf::MessageExts
414
422
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -542,9 +542,13 @@ module Google
542
542
  # @!attribute [rw] ip_address
543
543
  # @return [::String]
544
544
  # A single IP address. For example: `10.0.0.5`.
545
+ #
546
+ # Note: The following fields are mutually exclusive: `ip_address`, `ip_address_range`, `external_address`. If a field in that set is populated, all other fields in the set will automatically be cleared.
545
547
  # @!attribute [rw] ip_address_range
546
548
  # @return [::String]
547
549
  # An IP address range in the CIDR format. For example: `10.0.0.0/24`.
550
+ #
551
+ # Note: The following fields are mutually exclusive: `ip_address_range`, `ip_address`, `external_address`. If a field in that set is populated, all other fields in the set will automatically be cleared.
548
552
  # @!attribute [rw] external_address
549
553
  # @return [::String]
550
554
  # The name of an `ExternalAddress` resource. The external address must
@@ -553,6 +557,8 @@ module Google
553
557
  # `projects/{project}/locations/{location}/privateClouds/{private_cloud}/externalAddresses/{external_address}`.
554
558
  # For example:
555
559
  # `projects/my-project/locations/us-central1-a/privateClouds/my-cloud/externalAddresses/my-address`.
560
+ #
561
+ # Note: The following fields are mutually exclusive: `external_address`, `ip_address`, `ip_address_range`. If a field in that set is populated, all other fields in the set will automatically be cleared.
556
562
  class IpRange
557
563
  include ::Google::Protobuf::MessageExts
558
564
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -1327,12 +1333,16 @@ module Google
1327
1333
  # Specify the name in the following form for consumer
1328
1334
  # VPC network: `projects/{project}/global/networks/{network_id}`.
1329
1335
  # `{project}` can either be a project number or a project ID.
1336
+ #
1337
+ # Note: The following fields are mutually exclusive: `vpc_network`, `vmware_engine_network`. If a field in that set is populated, all other fields in the set will automatically be cleared.
1330
1338
  # @!attribute [rw] vmware_engine_network
1331
1339
  # @return [::String]
1332
1340
  # Network to bind is a VMware Engine network.
1333
1341
  # Specify the name in the following form for VMware engine network:
1334
1342
  # `projects/{project}/locations/global/vmwareEngineNetworks/{vmware_engine_network_id}`.
1335
1343
  # `{project}` can either be a project number or a project ID.
1344
+ #
1345
+ # Note: The following fields are mutually exclusive: `vmware_engine_network`, `vpc_network`. If a field in that set is populated, all other fields in the set will automatically be cleared.
1336
1346
  # @!attribute [r] uid
1337
1347
  # @return [::String]
1338
1348
  # Output only. System-generated unique identifier for the resource.
@@ -1663,9 +1673,13 @@ module Google
1663
1673
  # @!attribute [rw] user
1664
1674
  # @return [::String]
1665
1675
  # The user who needs to be granted permission.
1676
+ #
1677
+ # Note: The following fields are mutually exclusive: `user`, `service_account`. If a field in that set is populated, all other fields in the set will automatically be cleared.
1666
1678
  # @!attribute [rw] service_account
1667
1679
  # @return [::String]
1668
1680
  # The service account which needs to be granted the permission.
1681
+ #
1682
+ # Note: The following fields are mutually exclusive: `service_account`, `user`. If a field in that set is populated, all other fields in the set will automatically be cleared.
1669
1683
  class Principal
1670
1684
  include ::Google::Protobuf::MessageExts
1671
1685
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -40,6 +40,8 @@ module Google
40
40
  # @!attribute [rw] error
41
41
  # @return [::Google::Rpc::Status]
42
42
  # The error result of the operation in case of failure or cancellation.
43
+ #
44
+ # Note: The following fields are mutually exclusive: `error`, `response`. If a field in that set is populated, all other fields in the set will automatically be cleared.
43
45
  # @!attribute [rw] response
44
46
  # @return [::Google::Protobuf::Any]
45
47
  # The normal, successful response of the operation. If the original
@@ -50,6 +52,8 @@ module Google
50
52
  # is the original method name. For example, if the original method name
51
53
  # is `TakeSnapshot()`, the inferred response type is
52
54
  # `TakeSnapshotResponse`.
55
+ #
56
+ # Note: The following fields are mutually exclusive: `response`, `error`. If a field in that set is populated, all other fields in the set will automatically be cleared.
53
57
  class Operation
54
58
  include ::Google::Protobuf::MessageExts
55
59
  extend ::Google::Protobuf::MessageExts::ClassMethods
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-vmware_engine-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.0
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-12-10 00:00:00.000000000 Z
10
+ date: 2025-02-07 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: gapic-common
@@ -16,7 +15,7 @@ dependencies:
16
15
  requirements:
17
16
  - - ">="
18
17
  - !ruby/object:Gem::Version
19
- version: 0.24.0
18
+ version: 0.25.0
20
19
  - - "<"
21
20
  - !ruby/object:Gem::Version
22
21
  version: 2.a
@@ -26,7 +25,7 @@ dependencies:
26
25
  requirements:
27
26
  - - ">="
28
27
  - !ruby/object:Gem::Version
29
- version: 0.24.0
28
+ version: 0.25.0
30
29
  - - "<"
31
30
  - !ruby/object:Gem::Version
32
31
  version: 2.a
@@ -137,7 +136,6 @@ homepage: https://github.com/googleapis/google-cloud-ruby
137
136
  licenses:
138
137
  - Apache-2.0
139
138
  metadata: {}
140
- post_install_message:
141
139
  rdoc_options: []
142
140
  require_paths:
143
141
  - lib
@@ -145,15 +143,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
145
143
  requirements:
146
144
  - - ">="
147
145
  - !ruby/object:Gem::Version
148
- version: '2.7'
146
+ version: '3.0'
149
147
  required_rubygems_version: !ruby/object:Gem::Requirement
150
148
  requirements:
151
149
  - - ">="
152
150
  - !ruby/object:Gem::Version
153
151
  version: '0'
154
152
  requirements: []
155
- rubygems_version: 3.5.23
156
- signing_key:
153
+ rubygems_version: 3.6.3
157
154
  specification_version: 4
158
155
  summary: The Google VMware Engine API lets you programmatically manage VMware environments.
159
156
  test_files: []