google-apis-compute_beta 0.94.0 → 0.96.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ComputeBeta
18
18
  # Version of the google-apis-compute_beta gem
19
- GEM_VERSION = "0.94.0"
19
+ GEM_VERSION = "0.96.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240227"
25
+ REVISION = "20240312"
26
26
  end
27
27
  end
28
28
  end
@@ -586,6 +586,24 @@ module Google
586
586
  include Google::Apis::Core::JsonObjectSupport
587
587
  end
588
588
 
589
+ class BgpRoute
590
+ class Representation < Google::Apis::Core::JsonRepresentation; end
591
+
592
+ include Google::Apis::Core::JsonObjectSupport
593
+ end
594
+
595
+ class BgpRouteAsPath
596
+ class Representation < Google::Apis::Core::JsonRepresentation; end
597
+
598
+ include Google::Apis::Core::JsonObjectSupport
599
+ end
600
+
601
+ class BgpRouteNetworkLayerReachabilityInformation
602
+ class Representation < Google::Apis::Core::JsonRepresentation; end
603
+
604
+ include Google::Apis::Core::JsonObjectSupport
605
+ end
606
+
589
607
  class Binding
590
608
  class Representation < Google::Apis::Core::JsonRepresentation; end
591
609
 
@@ -3940,6 +3958,12 @@ module Google
3940
3958
  include Google::Apis::Core::JsonObjectSupport
3941
3959
  end
3942
3960
 
3961
+ class PartnerMetadata
3962
+ class Representation < Google::Apis::Core::JsonRepresentation; end
3963
+
3964
+ include Google::Apis::Core::JsonObjectSupport
3965
+ end
3966
+
3943
3967
  class PathMatcher
3944
3968
  class Representation < Google::Apis::Core::JsonRepresentation; end
3945
3969
 
@@ -4786,6 +4810,18 @@ module Google
4786
4810
  include Google::Apis::Core::JsonObjectSupport
4787
4811
  end
4788
4812
 
4813
+ class RoutePolicy
4814
+ class Representation < Google::Apis::Core::JsonRepresentation; end
4815
+
4816
+ include Google::Apis::Core::JsonObjectSupport
4817
+ end
4818
+
4819
+ class RoutePolicyPolicyTerm
4820
+ class Representation < Google::Apis::Core::JsonRepresentation; end
4821
+
4822
+ include Google::Apis::Core::JsonObjectSupport
4823
+ end
4824
+
4789
4825
  class Router
4790
4826
  class Representation < Google::Apis::Core::JsonRepresentation; end
4791
4827
 
@@ -4930,6 +4966,48 @@ module Google
4930
4966
  include Google::Apis::Core::JsonObjectSupport
4931
4967
  end
4932
4968
 
4969
+ class RoutersGetRoutePolicyResponse
4970
+ class Representation < Google::Apis::Core::JsonRepresentation; end
4971
+
4972
+ include Google::Apis::Core::JsonObjectSupport
4973
+ end
4974
+
4975
+ class RoutersListBgpRoutes
4976
+ class Representation < Google::Apis::Core::JsonRepresentation; end
4977
+
4978
+ class Warning
4979
+ class Representation < Google::Apis::Core::JsonRepresentation; end
4980
+
4981
+ class Datum
4982
+ class Representation < Google::Apis::Core::JsonRepresentation; end
4983
+
4984
+ include Google::Apis::Core::JsonObjectSupport
4985
+ end
4986
+
4987
+ include Google::Apis::Core::JsonObjectSupport
4988
+ end
4989
+
4990
+ include Google::Apis::Core::JsonObjectSupport
4991
+ end
4992
+
4993
+ class RoutersListRoutePolicies
4994
+ class Representation < Google::Apis::Core::JsonRepresentation; end
4995
+
4996
+ class Warning
4997
+ class Representation < Google::Apis::Core::JsonRepresentation; end
4998
+
4999
+ class Datum
5000
+ class Representation < Google::Apis::Core::JsonRepresentation; end
5001
+
5002
+ include Google::Apis::Core::JsonObjectSupport
5003
+ end
5004
+
5005
+ include Google::Apis::Core::JsonObjectSupport
5006
+ end
5007
+
5008
+ include Google::Apis::Core::JsonObjectSupport
5009
+ end
5010
+
4933
5011
  class RoutersPreviewResponse
4934
5012
  class Representation < Google::Apis::Core::JsonRepresentation; end
4935
5013
 
@@ -5830,6 +5908,12 @@ module Google
5830
5908
  include Google::Apis::Core::JsonObjectSupport
5831
5909
  end
5832
5910
 
5911
+ class StructuredEntries
5912
+ class Representation < Google::Apis::Core::JsonRepresentation; end
5913
+
5914
+ include Google::Apis::Core::JsonObjectSupport
5915
+ end
5916
+
5833
5917
  class Subnetwork
5834
5918
  class Representation < Google::Apis::Core::JsonRepresentation; end
5835
5919
 
@@ -7994,6 +8078,35 @@ module Google
7994
8078
  end
7995
8079
  end
7996
8080
 
8081
+ class BgpRoute
8082
+ # @private
8083
+ class Representation < Google::Apis::Core::JsonRepresentation
8084
+ collection :as_paths, as: 'asPaths', class: Google::Apis::ComputeBeta::BgpRouteAsPath, decorator: Google::Apis::ComputeBeta::BgpRouteAsPath::Representation
8085
+
8086
+ collection :communities, as: 'communities'
8087
+ property :destination, as: 'destination', class: Google::Apis::ComputeBeta::BgpRouteNetworkLayerReachabilityInformation, decorator: Google::Apis::ComputeBeta::BgpRouteNetworkLayerReachabilityInformation::Representation
8088
+
8089
+ property :med, as: 'med'
8090
+ property :origin, as: 'origin'
8091
+ end
8092
+ end
8093
+
8094
+ class BgpRouteAsPath
8095
+ # @private
8096
+ class Representation < Google::Apis::Core::JsonRepresentation
8097
+ collection :asns, as: 'asns'
8098
+ property :type, as: 'type'
8099
+ end
8100
+ end
8101
+
8102
+ class BgpRouteNetworkLayerReachabilityInformation
8103
+ # @private
8104
+ class Representation < Google::Apis::Core::JsonRepresentation
8105
+ property :path_id, as: 'pathId'
8106
+ property :prefix, as: 'prefix'
8107
+ end
8108
+ end
8109
+
7997
8110
  class Binding
7998
8111
  # @private
7999
8112
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -10241,6 +10354,8 @@ module Google
10241
10354
 
10242
10355
  property :params, as: 'params', class: Google::Apis::ComputeBeta::InstanceParams, decorator: Google::Apis::ComputeBeta::InstanceParams::Representation
10243
10356
 
10357
+ hash :partner_metadata, as: 'partnerMetadata', class: Google::Apis::ComputeBeta::StructuredEntries, decorator: Google::Apis::ComputeBeta::StructuredEntries::Representation
10358
+
10244
10359
  property :post_key_revocation_action_type, as: 'postKeyRevocationActionType'
10245
10360
  property :private_ipv6_google_access, as: 'privateIpv6GoogleAccess'
10246
10361
  property :reservation_affinity, as: 'reservationAffinity', class: Google::Apis::ComputeBeta::ReservationAffinity, decorator: Google::Apis::ComputeBeta::ReservationAffinity::Representation
@@ -11237,6 +11352,8 @@ module Google
11237
11352
 
11238
11353
  property :network_performance_config, as: 'networkPerformanceConfig', class: Google::Apis::ComputeBeta::NetworkPerformanceConfig, decorator: Google::Apis::ComputeBeta::NetworkPerformanceConfig::Representation
11239
11354
 
11355
+ hash :partner_metadata, as: 'partnerMetadata', class: Google::Apis::ComputeBeta::StructuredEntries, decorator: Google::Apis::ComputeBeta::StructuredEntries::Representation
11356
+
11240
11357
  property :post_key_revocation_action_type, as: 'postKeyRevocationActionType'
11241
11358
  property :private_ipv6_google_access, as: 'privateIpv6GoogleAccess'
11242
11359
  property :reservation_affinity, as: 'reservationAffinity', class: Google::Apis::ComputeBeta::ReservationAffinity, decorator: Google::Apis::ComputeBeta::ReservationAffinity::Representation
@@ -14342,6 +14459,15 @@ module Google
14342
14459
  end
14343
14460
  end
14344
14461
 
14462
+ class PartnerMetadata
14463
+ # @private
14464
+ class Representation < Google::Apis::Core::JsonRepresentation
14465
+ property :fingerprint, :base64 => true, as: 'fingerprint'
14466
+ hash :partner_metadata, as: 'partnerMetadata', class: Google::Apis::ComputeBeta::StructuredEntries, decorator: Google::Apis::ComputeBeta::StructuredEntries::Representation
14467
+
14468
+ end
14469
+ end
14470
+
14345
14471
  class PathMatcher
14346
14472
  # @private
14347
14473
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -15791,6 +15917,28 @@ module Google
15791
15917
  end
15792
15918
  end
15793
15919
 
15920
+ class RoutePolicy
15921
+ # @private
15922
+ class Representation < Google::Apis::Core::JsonRepresentation
15923
+ property :fingerprint, :base64 => true, as: 'fingerprint'
15924
+ property :name, as: 'name'
15925
+ collection :terms, as: 'terms', class: Google::Apis::ComputeBeta::RoutePolicyPolicyTerm, decorator: Google::Apis::ComputeBeta::RoutePolicyPolicyTerm::Representation
15926
+
15927
+ property :type, as: 'type'
15928
+ end
15929
+ end
15930
+
15931
+ class RoutePolicyPolicyTerm
15932
+ # @private
15933
+ class Representation < Google::Apis::Core::JsonRepresentation
15934
+ collection :actions, as: 'actions', class: Google::Apis::ComputeBeta::Expr, decorator: Google::Apis::ComputeBeta::Expr::Representation
15935
+
15936
+ property :match, as: 'match', class: Google::Apis::ComputeBeta::Expr, decorator: Google::Apis::ComputeBeta::Expr::Representation
15937
+
15938
+ property :priority, as: 'priority'
15939
+ end
15940
+ end
15941
+
15794
15942
  class Router
15795
15943
  # @private
15796
15944
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -16119,6 +16267,82 @@ module Google
16119
16267
  end
16120
16268
  end
16121
16269
 
16270
+ class RoutersGetRoutePolicyResponse
16271
+ # @private
16272
+ class Representation < Google::Apis::Core::JsonRepresentation
16273
+ property :resource, as: 'resource', class: Google::Apis::ComputeBeta::RoutePolicy, decorator: Google::Apis::ComputeBeta::RoutePolicy::Representation
16274
+
16275
+ end
16276
+ end
16277
+
16278
+ class RoutersListBgpRoutes
16279
+ # @private
16280
+ class Representation < Google::Apis::Core::JsonRepresentation
16281
+ property :etag, as: 'etag'
16282
+ property :id, as: 'id'
16283
+ property :kind, as: 'kind'
16284
+ property :next_page_token, as: 'nextPageToken'
16285
+ collection :result, as: 'result', class: Google::Apis::ComputeBeta::BgpRoute, decorator: Google::Apis::ComputeBeta::BgpRoute::Representation
16286
+
16287
+ property :self_link, as: 'selfLink'
16288
+ collection :unreachables, as: 'unreachables'
16289
+ property :warning, as: 'warning', class: Google::Apis::ComputeBeta::RoutersListBgpRoutes::Warning, decorator: Google::Apis::ComputeBeta::RoutersListBgpRoutes::Warning::Representation
16290
+
16291
+ end
16292
+
16293
+ class Warning
16294
+ # @private
16295
+ class Representation < Google::Apis::Core::JsonRepresentation
16296
+ property :code, as: 'code'
16297
+ collection :data, as: 'data', class: Google::Apis::ComputeBeta::RoutersListBgpRoutes::Warning::Datum, decorator: Google::Apis::ComputeBeta::RoutersListBgpRoutes::Warning::Datum::Representation
16298
+
16299
+ property :message, as: 'message'
16300
+ end
16301
+
16302
+ class Datum
16303
+ # @private
16304
+ class Representation < Google::Apis::Core::JsonRepresentation
16305
+ property :key, as: 'key'
16306
+ property :value, as: 'value'
16307
+ end
16308
+ end
16309
+ end
16310
+ end
16311
+
16312
+ class RoutersListRoutePolicies
16313
+ # @private
16314
+ class Representation < Google::Apis::Core::JsonRepresentation
16315
+ property :etag, as: 'etag'
16316
+ property :id, as: 'id'
16317
+ property :kind, as: 'kind'
16318
+ property :next_page_token, as: 'nextPageToken'
16319
+ collection :result, as: 'result', class: Google::Apis::ComputeBeta::RoutePolicy, decorator: Google::Apis::ComputeBeta::RoutePolicy::Representation
16320
+
16321
+ property :self_link, as: 'selfLink'
16322
+ collection :unreachables, as: 'unreachables'
16323
+ property :warning, as: 'warning', class: Google::Apis::ComputeBeta::RoutersListRoutePolicies::Warning, decorator: Google::Apis::ComputeBeta::RoutersListRoutePolicies::Warning::Representation
16324
+
16325
+ end
16326
+
16327
+ class Warning
16328
+ # @private
16329
+ class Representation < Google::Apis::Core::JsonRepresentation
16330
+ property :code, as: 'code'
16331
+ collection :data, as: 'data', class: Google::Apis::ComputeBeta::RoutersListRoutePolicies::Warning::Datum, decorator: Google::Apis::ComputeBeta::RoutersListRoutePolicies::Warning::Datum::Representation
16332
+
16333
+ property :message, as: 'message'
16334
+ end
16335
+
16336
+ class Datum
16337
+ # @private
16338
+ class Representation < Google::Apis::Core::JsonRepresentation
16339
+ property :key, as: 'key'
16340
+ property :value, as: 'value'
16341
+ end
16342
+ end
16343
+ end
16344
+ end
16345
+
16122
16346
  class RoutersPreviewResponse
16123
16347
  # @private
16124
16348
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -17802,6 +18026,13 @@ module Google
17802
18026
  end
17803
18027
  end
17804
18028
 
18029
+ class StructuredEntries
18030
+ # @private
18031
+ class Representation < Google::Apis::Core::JsonRepresentation
18032
+ hash :entries, as: 'entries'
18033
+ end
18034
+ end
18035
+
17805
18036
  class Subnetwork
17806
18037
  # @private
17807
18038
  class Representation < Google::Apis::Core::JsonRepresentation