google-apis-compute_alpha 0.107.0 → 0.108.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.
@@ -578,8 +578,7 @@ module Google
578
578
  # @return [String]
579
579
  attr_accessor :public_ptr_domain_name
580
580
 
581
- # [Output Only] The resource URL for the security policy associated with this
582
- # access config.
581
+ # The resource URL for the security policy associated with this access config.
583
582
  # Corresponds to the JSON property `securityPolicy`
584
583
  # @return [String]
585
584
  attr_accessor :security_policy
@@ -1945,7 +1944,9 @@ module Google
1945
1944
  # disk, one of initializeParams.sourceSnapshot or initializeParams.sourceImage
1946
1945
  # or disks.source is required. To create a disk with a snapshot that you created,
1947
1946
  # specify the snapshot name in the following format: global/snapshots/my-backup
1948
- # If the source snapshot is deleted later, this field will not be set.
1947
+ # If the source snapshot is deleted later, this field will not be set. Note: You
1948
+ # cannot create VMs in bulk using a snapshot as the source. Use an image instead
1949
+ # when you create VMs using the bulk insert method.
1949
1950
  # Corresponds to the JSON property `sourceSnapshot`
1950
1951
  # @return [String]
1951
1952
  attr_accessor :source_snapshot
@@ -6435,6 +6436,74 @@ module Google
6435
6436
  end
6436
6437
  end
6437
6438
 
6439
+ # A request to recommend the best way to consume the specified resources in the
6440
+ # future.
6441
+ class CalendarModeAdviceRequest
6442
+ include Google::Apis::Core::Hashable
6443
+
6444
+ # Specification of resources to create in the future. The key of the map is an
6445
+ # arbitrary string specified by the caller. Value of the map is a specification
6446
+ # of required resources and their constraints. Currently only one value is
6447
+ # allowed in this map.
6448
+ # Corresponds to the JSON property `futureResourcesSpecs`
6449
+ # @return [Hash<String,Google::Apis::ComputeAlpha::FutureResourcesSpec>]
6450
+ attr_accessor :future_resources_specs
6451
+
6452
+ def initialize(**args)
6453
+ update!(**args)
6454
+ end
6455
+
6456
+ # Update properties of this object
6457
+ def update!(**args)
6458
+ @future_resources_specs = args[:future_resources_specs] if args.key?(:future_resources_specs)
6459
+ end
6460
+ end
6461
+
6462
+ # A response containing the recommended way of creating the specified resources
6463
+ # in the future. It contains (will contain) multiple recommendations that can be
6464
+ # analyzed by the customer and the best one can be picked.
6465
+ class CalendarModeAdviceResponse
6466
+ include Google::Apis::Core::Hashable
6467
+
6468
+ # Recommendations where, how and when to create the requested resources in order
6469
+ # to maximize their obtainability and minimize cost.
6470
+ # Corresponds to the JSON property `recommendations`
6471
+ # @return [Array<Google::Apis::ComputeAlpha::CalendarModeRecommendation>]
6472
+ attr_accessor :recommendations
6473
+
6474
+ def initialize(**args)
6475
+ update!(**args)
6476
+ end
6477
+
6478
+ # Update properties of this object
6479
+ def update!(**args)
6480
+ @recommendations = args[:recommendations] if args.key?(:recommendations)
6481
+ end
6482
+ end
6483
+
6484
+ # A single recommendation to create requested resources. Contains detailed
6485
+ # recommendations for every future resources specification specified in
6486
+ # CalendarModeAdviceRequest.
6487
+ class CalendarModeRecommendation
6488
+ include Google::Apis::Core::Hashable
6489
+
6490
+ # Recommendations for every future resource specification passed in
6491
+ # CalendarModeAdviceRequest. Keys of the map correspond to keys specified in the
6492
+ # request.
6493
+ # Corresponds to the JSON property `recommendationsPerSpec`
6494
+ # @return [Hash<String,Google::Apis::ComputeAlpha::FutureResourcesRecommendation>]
6495
+ attr_accessor :recommendations_per_spec
6496
+
6497
+ def initialize(**args)
6498
+ update!(**args)
6499
+ end
6500
+
6501
+ # Update properties of this object
6502
+ def update!(**args)
6503
+ @recommendations_per_spec = args[:recommendations_per_spec] if args.key?(:recommendations_per_spec)
6504
+ end
6505
+ end
6506
+
6438
6507
  # [Deprecated] gRPC call credentials to access the SDS server. gRPC call
6439
6508
  # credentials to access the SDS server.
6440
6509
  class CallCredentials
@@ -9688,12 +9757,12 @@ module Google
9688
9757
  # @return [String]
9689
9758
  attr_accessor :domain
9690
9759
 
9691
- # Additional structured details about this error. Keys must match /a-z+/ but
9692
- # should ideally be lowerCamelCase. Also they must be limited to 64 characters
9693
- # in length. When identifying the current value of an exceeded limit, the units
9694
- # should be contained in the key, not the value. For example, rather than `"
9695
- # instanceLimit": "100/request"`, should be returned as, `"
9696
- # instanceLimitPerRequest": "100"`, if the client exceeds the number of
9760
+ # Additional structured details about this error. Keys must match a regular
9761
+ # expression of `a-z+` but should ideally be lowerCamelCase. Also, they must be
9762
+ # limited to 64 characters in length. When identifying the current value of an
9763
+ # exceeded limit, the units should be contained in the key, not the value. For
9764
+ # example, rather than ``"instanceLimit": "100/request"``, should be returned as,
9765
+ # ``"instanceLimitPerRequest": "100"``, if the client exceeds the number of
9697
9766
  # instances that can be created in a single (batch) request.
9698
9767
  # Corresponds to the JSON property `metadatas`
9699
9768
  # @return [Hash<String,String>]
@@ -10668,6 +10737,97 @@ module Google
10668
10737
  end
10669
10738
  end
10670
10739
 
10740
+ #
10741
+ class FirewallPoliciesScopedList
10742
+ include Google::Apis::Core::Hashable
10743
+
10744
+ # A list of firewall policies contained in this scope.
10745
+ # Corresponds to the JSON property `firewallPolicies`
10746
+ # @return [Array<Google::Apis::ComputeAlpha::FirewallPolicy>]
10747
+ attr_accessor :firewall_policies
10748
+
10749
+ # Informational warning which replaces the list of firewall policies when the
10750
+ # list is empty.
10751
+ # Corresponds to the JSON property `warning`
10752
+ # @return [Google::Apis::ComputeAlpha::FirewallPoliciesScopedList::Warning]
10753
+ attr_accessor :warning
10754
+
10755
+ def initialize(**args)
10756
+ update!(**args)
10757
+ end
10758
+
10759
+ # Update properties of this object
10760
+ def update!(**args)
10761
+ @firewall_policies = args[:firewall_policies] if args.key?(:firewall_policies)
10762
+ @warning = args[:warning] if args.key?(:warning)
10763
+ end
10764
+
10765
+ # Informational warning which replaces the list of firewall policies when the
10766
+ # list is empty.
10767
+ class Warning
10768
+ include Google::Apis::Core::Hashable
10769
+
10770
+ # [Output Only] A warning code, if applicable. For example, Compute Engine
10771
+ # returns NO_RESULTS_ON_PAGE if there are no results in the response.
10772
+ # Corresponds to the JSON property `code`
10773
+ # @return [String]
10774
+ attr_accessor :code
10775
+
10776
+ # [Output Only] Metadata about this warning in key: value format. For example: "
10777
+ # data": [ ` "key": "scope", "value": "zones/us-east1-d" `
10778
+ # Corresponds to the JSON property `data`
10779
+ # @return [Array<Google::Apis::ComputeAlpha::FirewallPoliciesScopedList::Warning::Datum>]
10780
+ attr_accessor :data
10781
+
10782
+ # [Output Only] A human-readable description of the warning code.
10783
+ # Corresponds to the JSON property `message`
10784
+ # @return [String]
10785
+ attr_accessor :message
10786
+
10787
+ def initialize(**args)
10788
+ update!(**args)
10789
+ end
10790
+
10791
+ # Update properties of this object
10792
+ def update!(**args)
10793
+ @code = args[:code] if args.key?(:code)
10794
+ @data = args[:data] if args.key?(:data)
10795
+ @message = args[:message] if args.key?(:message)
10796
+ end
10797
+
10798
+ #
10799
+ class Datum
10800
+ include Google::Apis::Core::Hashable
10801
+
10802
+ # [Output Only] A key that provides more detail on the warning being returned.
10803
+ # For example, for warnings where there are no results in a list request for a
10804
+ # particular zone, this key might be scope and the key value might be the zone
10805
+ # name. Other examples might be a key indicating a deprecated resource and a
10806
+ # suggested replacement, or a warning about invalid network settings (for
10807
+ # example, if an instance attempts to perform IP forwarding but is not enabled
10808
+ # for IP forwarding).
10809
+ # Corresponds to the JSON property `key`
10810
+ # @return [String]
10811
+ attr_accessor :key
10812
+
10813
+ # [Output Only] A warning data value corresponding to the key.
10814
+ # Corresponds to the JSON property `value`
10815
+ # @return [String]
10816
+ attr_accessor :value
10817
+
10818
+ def initialize(**args)
10819
+ update!(**args)
10820
+ end
10821
+
10822
+ # Update properties of this object
10823
+ def update!(**args)
10824
+ @key = args[:key] if args.key?(:key)
10825
+ @value = args[:value] if args.key?(:value)
10826
+ end
10827
+ end
10828
+ end
10829
+ end
10830
+
10671
10831
  # Represents a Firewall Policy resource.
10672
10832
  class FirewallPolicy
10673
10833
  include Google::Apis::Core::Hashable
@@ -11341,6 +11501,58 @@ module Google
11341
11501
  end
11342
11502
  end
11343
11503
 
11504
+ # A flexible specification of a time range that has 3 points of flexibility: (1)
11505
+ # a flexible start time, (2) a flexible end time, (3) a flexible duration. It is
11506
+ # possible to specify a contradictory time range that cannot be matched by any
11507
+ # Interval. This causes a validation error.
11508
+ class FlexibleTimeRange
11509
+ include Google::Apis::Core::Hashable
11510
+
11511
+ #
11512
+ # Corresponds to the JSON property `endTimeNotEarlierThan`
11513
+ # @return [String]
11514
+ attr_accessor :end_time_not_earlier_than
11515
+
11516
+ #
11517
+ # Corresponds to the JSON property `endTimeNotLaterThan`
11518
+ # @return [String]
11519
+ attr_accessor :end_time_not_later_than
11520
+
11521
+ #
11522
+ # Corresponds to the JSON property `maxDuration`
11523
+ # @return [String]
11524
+ attr_accessor :max_duration
11525
+
11526
+ #
11527
+ # Corresponds to the JSON property `minDuration`
11528
+ # @return [String]
11529
+ attr_accessor :min_duration
11530
+
11531
+ #
11532
+ # Corresponds to the JSON property `startTimeNotEarlierThan`
11533
+ # @return [String]
11534
+ attr_accessor :start_time_not_earlier_than
11535
+
11536
+ #
11537
+ # Corresponds to the JSON property `startTimeNotLaterThan`
11538
+ # @return [String]
11539
+ attr_accessor :start_time_not_later_than
11540
+
11541
+ def initialize(**args)
11542
+ update!(**args)
11543
+ end
11544
+
11545
+ # Update properties of this object
11546
+ def update!(**args)
11547
+ @end_time_not_earlier_than = args[:end_time_not_earlier_than] if args.key?(:end_time_not_earlier_than)
11548
+ @end_time_not_later_than = args[:end_time_not_later_than] if args.key?(:end_time_not_later_than)
11549
+ @max_duration = args[:max_duration] if args.key?(:max_duration)
11550
+ @min_duration = args[:min_duration] if args.key?(:min_duration)
11551
+ @start_time_not_earlier_than = args[:start_time_not_earlier_than] if args.key?(:start_time_not_earlier_than)
11552
+ @start_time_not_later_than = args[:start_time_not_later_than] if args.key?(:start_time_not_later_than)
11553
+ end
11554
+ end
11555
+
11344
11556
  # Represents a Forwarding Rule resource. Forwarding rule resources in Google
11345
11557
  # Cloud can be either regional or global in scope: * [Global](https://cloud.
11346
11558
  # google.com/compute/docs/reference/rest/alpha/globalForwardingRules) * [
@@ -12376,8 +12588,7 @@ module Google
12376
12588
  class FutureReservationCommitmentInfo
12377
12589
  include Google::Apis::Core::Hashable
12378
12590
 
12379
- # name of the commitment where capacity is being delivered to. In the form of "
12380
- # projects/`project-id`/locations/`region-name`/commitment/`name`"
12591
+ # name of the commitment where capacity is being delivered to.
12381
12592
  # Corresponds to the JSON property `commitmentName`
12382
12593
  # @return [String]
12383
12594
  attr_accessor :commitment_name
@@ -13028,6 +13239,286 @@ module Google
13028
13239
  end
13029
13240
  end
13030
13241
 
13242
+ # Recommendation for single resources specification, to be created in the future.
13243
+ class FutureResourcesRecommendation
13244
+ include Google::Apis::Core::Hashable
13245
+
13246
+ #
13247
+ # Corresponds to the JSON property `endTime`
13248
+ # @return [String]
13249
+ attr_accessor :end_time
13250
+
13251
+ # The advised location for resource usage. When a zone, in format 'zones/'. If
13252
+ # not set, it means that no location is recommended - see other_locations for
13253
+ # details.
13254
+ # Corresponds to the JSON property `location`
13255
+ # @return [String]
13256
+ attr_accessor :location
13257
+
13258
+ # List of locations in the request scope that were not recommended. Keys of the
13259
+ # map are zones, in format 'zones/'. The values are status information
13260
+ # indicating the recommendation status.
13261
+ # Corresponds to the JSON property `otherLocations`
13262
+ # @return [Hash<String,Google::Apis::ComputeAlpha::FutureResourcesRecommendationOtherLocation>]
13263
+ attr_accessor :other_locations
13264
+
13265
+ # Unique id of the recommendation, a UUID string generated by the API.
13266
+ # Corresponds to the JSON property `recommendationId`
13267
+ # @return [String]
13268
+ attr_accessor :recommendation_id
13269
+
13270
+ # Type of recommendation. Currently only FUTURE_RESERVATION is supported.
13271
+ # Corresponds to the JSON property `recommendationType`
13272
+ # @return [String]
13273
+ attr_accessor :recommendation_type
13274
+
13275
+ #
13276
+ # Corresponds to the JSON property `startTime`
13277
+ # @return [String]
13278
+ attr_accessor :start_time
13279
+
13280
+ def initialize(**args)
13281
+ update!(**args)
13282
+ end
13283
+
13284
+ # Update properties of this object
13285
+ def update!(**args)
13286
+ @end_time = args[:end_time] if args.key?(:end_time)
13287
+ @location = args[:location] if args.key?(:location)
13288
+ @other_locations = args[:other_locations] if args.key?(:other_locations)
13289
+ @recommendation_id = args[:recommendation_id] if args.key?(:recommendation_id)
13290
+ @recommendation_type = args[:recommendation_type] if args.key?(:recommendation_type)
13291
+ @start_time = args[:start_time] if args.key?(:start_time)
13292
+ end
13293
+ end
13294
+
13295
+ # Information about recommendation status for locations that were allowed but
13296
+ # not used by the response.
13297
+ class FutureResourcesRecommendationOtherLocation
13298
+ include Google::Apis::Core::Hashable
13299
+
13300
+ # Details (human readable) describing the situation. For example, if status is
13301
+ # CONDITION_NOT_MET, then details contain information about the parameters of
13302
+ # the time window that did not meet the required conditions.
13303
+ # Corresponds to the JSON property `details`
13304
+ # @return [String]
13305
+ attr_accessor :details
13306
+
13307
+ # Status of recommendation in this location.
13308
+ # Corresponds to the JSON property `status`
13309
+ # @return [String]
13310
+ attr_accessor :status
13311
+
13312
+ def initialize(**args)
13313
+ update!(**args)
13314
+ end
13315
+
13316
+ # Update properties of this object
13317
+ def update!(**args)
13318
+ @details = args[:details] if args.key?(:details)
13319
+ @status = args[:status] if args.key?(:status)
13320
+ end
13321
+ end
13322
+
13323
+ # Specification of resources to be created at some time in the future within an
13324
+ # optionally specified set of locations, and within the specified time range.
13325
+ class FutureResourcesSpec
13326
+ include Google::Apis::Core::Hashable
13327
+
13328
+ # Indicates if the reservation allocation strategy is static (DENSE) or dynamic (
13329
+ # STANDARD). Defaults to DENSE.
13330
+ # Corresponds to the JSON property `deploymentType`
13331
+ # @return [String]
13332
+ attr_accessor :deployment_type
13333
+
13334
+ # Specification of locations to create resources in.
13335
+ # Corresponds to the JSON property `locationPolicy`
13336
+ # @return [Google::Apis::ComputeAlpha::FutureResourcesSpecLocationPolicy]
13337
+ attr_accessor :location_policy
13338
+
13339
+ # Specification of reserved resources.
13340
+ # Corresponds to the JSON property `targetResources`
13341
+ # @return [Google::Apis::ComputeAlpha::FutureResourcesSpecTargetResources]
13342
+ attr_accessor :target_resources
13343
+
13344
+ # A flexible specification of a time range that has 3 points of flexibility: (1)
13345
+ # a flexible start time, (2) a flexible end time, (3) a flexible duration. It is
13346
+ # possible to specify a contradictory time range that cannot be matched by any
13347
+ # Interval. This causes a validation error.
13348
+ # Corresponds to the JSON property `timeRangeSpec`
13349
+ # @return [Google::Apis::ComputeAlpha::FlexibleTimeRange]
13350
+ attr_accessor :time_range_spec
13351
+
13352
+ def initialize(**args)
13353
+ update!(**args)
13354
+ end
13355
+
13356
+ # Update properties of this object
13357
+ def update!(**args)
13358
+ @deployment_type = args[:deployment_type] if args.key?(:deployment_type)
13359
+ @location_policy = args[:location_policy] if args.key?(:location_policy)
13360
+ @target_resources = args[:target_resources] if args.key?(:target_resources)
13361
+ @time_range_spec = args[:time_range_spec] if args.key?(:time_range_spec)
13362
+ end
13363
+ end
13364
+
13365
+ #
13366
+ class FutureResourcesSpecAggregateResources
13367
+ include Google::Apis::Core::Hashable
13368
+
13369
+ # Size of the request, in accelerator (chip) count.
13370
+ # Corresponds to the JSON property `acceleratorCount`
13371
+ # @return [Fixnum]
13372
+ attr_accessor :accelerator_count
13373
+
13374
+ # The VM family that all instances scheduled against this reservation must
13375
+ # belong to. Use for TPU reservations.
13376
+ # Corresponds to the JSON property `vmFamily`
13377
+ # @return [String]
13378
+ attr_accessor :vm_family
13379
+
13380
+ # Workload type. Use for TPU reservations.
13381
+ # Corresponds to the JSON property `workloadType`
13382
+ # @return [String]
13383
+ attr_accessor :workload_type
13384
+
13385
+ def initialize(**args)
13386
+ update!(**args)
13387
+ end
13388
+
13389
+ # Update properties of this object
13390
+ def update!(**args)
13391
+ @accelerator_count = args[:accelerator_count] if args.key?(:accelerator_count)
13392
+ @vm_family = args[:vm_family] if args.key?(:vm_family)
13393
+ @workload_type = args[:workload_type] if args.key?(:workload_type)
13394
+ end
13395
+ end
13396
+
13397
+ #
13398
+ class FutureResourcesSpecLocalSsdPartition
13399
+ include Google::Apis::Core::Hashable
13400
+
13401
+ # Disk interface. Defaults to SCSI.
13402
+ # Corresponds to the JSON property `diskInterface`
13403
+ # @return [String]
13404
+ attr_accessor :disk_interface
13405
+
13406
+ # The size of the disk in GB.
13407
+ # Corresponds to the JSON property `diskSizeGb`
13408
+ # @return [Fixnum]
13409
+ attr_accessor :disk_size_gb
13410
+
13411
+ def initialize(**args)
13412
+ update!(**args)
13413
+ end
13414
+
13415
+ # Update properties of this object
13416
+ def update!(**args)
13417
+ @disk_interface = args[:disk_interface] if args.key?(:disk_interface)
13418
+ @disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
13419
+ end
13420
+ end
13421
+
13422
+ # Specification of locations to create resources in.
13423
+ class FutureResourcesSpecLocationPolicy
13424
+ include Google::Apis::Core::Hashable
13425
+
13426
+ # Preferences for specified locations. Keys of the map are locations - zones, in
13427
+ # format of 'zones/'. Values are preferences for the zones. If a zone is not
13428
+ # specified in this map, it is ALLOWed.
13429
+ # Corresponds to the JSON property `locations`
13430
+ # @return [Hash<String,Google::Apis::ComputeAlpha::FutureResourcesSpecLocationPolicyLocation>]
13431
+ attr_accessor :locations
13432
+
13433
+ def initialize(**args)
13434
+ update!(**args)
13435
+ end
13436
+
13437
+ # Update properties of this object
13438
+ def update!(**args)
13439
+ @locations = args[:locations] if args.key?(:locations)
13440
+ end
13441
+ end
13442
+
13443
+ # Preference for a single specified location.
13444
+ class FutureResourcesSpecLocationPolicyLocation
13445
+ include Google::Apis::Core::Hashable
13446
+
13447
+ # Preference for this location.
13448
+ # Corresponds to the JSON property `preference`
13449
+ # @return [String]
13450
+ attr_accessor :preference
13451
+
13452
+ def initialize(**args)
13453
+ update!(**args)
13454
+ end
13455
+
13456
+ # Update properties of this object
13457
+ def update!(**args)
13458
+ @preference = args[:preference] if args.key?(:preference)
13459
+ end
13460
+ end
13461
+
13462
+ #
13463
+ class FutureResourcesSpecSpecificSkuResources
13464
+ include Google::Apis::Core::Hashable
13465
+
13466
+ # Size of the request, in instance count.
13467
+ # Corresponds to the JSON property `instanceCount`
13468
+ # @return [Fixnum]
13469
+ attr_accessor :instance_count
13470
+
13471
+ # Local SSD partitions. You do not have to include SSD partitions that are built
13472
+ # in the machine type.
13473
+ # Corresponds to the JSON property `localSsdPartitions`
13474
+ # @return [Array<Google::Apis::ComputeAlpha::FutureResourcesSpecLocalSsdPartition>]
13475
+ attr_accessor :local_ssd_partitions
13476
+
13477
+ # The machine type to use for instances that will use the reservation. This
13478
+ # field only accepts machine type names. e.g. n2-standard-4 and does not accept
13479
+ # machine type full or partial url. e.g. projects/my-l7ilb-project/zones/us-
13480
+ # central1-a/machineTypes/n2-standard-4. Use for GPU reservations.
13481
+ # Corresponds to the JSON property `machineType`
13482
+ # @return [String]
13483
+ attr_accessor :machine_type
13484
+
13485
+ def initialize(**args)
13486
+ update!(**args)
13487
+ end
13488
+
13489
+ # Update properties of this object
13490
+ def update!(**args)
13491
+ @instance_count = args[:instance_count] if args.key?(:instance_count)
13492
+ @local_ssd_partitions = args[:local_ssd_partitions] if args.key?(:local_ssd_partitions)
13493
+ @machine_type = args[:machine_type] if args.key?(:machine_type)
13494
+ end
13495
+ end
13496
+
13497
+ # Specification of reserved resources.
13498
+ class FutureResourcesSpecTargetResources
13499
+ include Google::Apis::Core::Hashable
13500
+
13501
+ #
13502
+ # Corresponds to the JSON property `aggregateResources`
13503
+ # @return [Google::Apis::ComputeAlpha::FutureResourcesSpecAggregateResources]
13504
+ attr_accessor :aggregate_resources
13505
+
13506
+ #
13507
+ # Corresponds to the JSON property `specificSkuResources`
13508
+ # @return [Google::Apis::ComputeAlpha::FutureResourcesSpecSpecificSkuResources]
13509
+ attr_accessor :specific_sku_resources
13510
+
13511
+ def initialize(**args)
13512
+ update!(**args)
13513
+ end
13514
+
13515
+ # Update properties of this object
13516
+ def update!(**args)
13517
+ @aggregate_resources = args[:aggregate_resources] if args.key?(:aggregate_resources)
13518
+ @specific_sku_resources = args[:specific_sku_resources] if args.key?(:specific_sku_resources)
13519
+ end
13520
+ end
13521
+
13031
13522
  #
13032
13523
  class GrpcHealthCheck
13033
13524
  include Google::Apis::Core::Hashable
@@ -23757,23 +24248,55 @@ module Google
23757
24248
  # BPS_100M: 100 Mbit/s - BPS_200M: 200 Mbit/s - BPS_300M: 300 Mbit/s - BPS_400M:
23758
24249
  # 400 Mbit/s - BPS_500M: 500 Mbit/s - BPS_1G: 1 Gbit/s - BPS_2G: 2 Gbit/s -
23759
24250
  # BPS_5G: 5 Gbit/s - BPS_10G: 10 Gbit/s - BPS_20G: 20 Gbit/s - BPS_50G: 50 Gbit/
23760
- # s
24251
+ # s - BPS_100G: 100 Gbit/s
23761
24252
  # Corresponds to the JSON property `bandwidth`
23762
24253
  # @return [String]
23763
24254
  attr_accessor :bandwidth
23764
24255
 
24256
+ # Single IPv4 address + prefix length to be configured on the cloud router
24257
+ # interface for this interconnect attachment. - Both
24258
+ # candidate_cloud_router_ip_address and candidate_customer_router_ip_address
24259
+ # fields must be set or both must be unset. - Prefix length of both
24260
+ # candidate_cloud_router_ip_address and candidate_customer_router_ip_address
24261
+ # must be the same. - Max prefix length is 31.
24262
+ # Corresponds to the JSON property `candidateCloudRouterIpAddress`
24263
+ # @return [String]
24264
+ attr_accessor :candidate_cloud_router_ip_address
24265
+
24266
+ # Single IPv6 address + prefix length to be configured on the cloud router
24267
+ # interface for this interconnect attachment. - Both
24268
+ # candidate_cloud_router_ipv6_address and candidate_customer_router_ipv6_address
24269
+ # fields must be set or both must be unset. - Prefix length of both
24270
+ # candidate_cloud_router_ipv6_address and candidate_customer_router_ipv6_address
24271
+ # must be the same. - Max prefix length is 126.
24272
+ # Corresponds to the JSON property `candidateCloudRouterIpv6Address`
24273
+ # @return [String]
24274
+ attr_accessor :candidate_cloud_router_ipv6_address
24275
+
24276
+ # Single IPv4 address + prefix length to be configured on the customer router
24277
+ # interface for this interconnect attachment.
24278
+ # Corresponds to the JSON property `candidateCustomerRouterIpAddress`
24279
+ # @return [String]
24280
+ attr_accessor :candidate_customer_router_ip_address
24281
+
24282
+ # Single IPv6 address + prefix length to be configured on the customer router
24283
+ # interface for this interconnect attachment.
24284
+ # Corresponds to the JSON property `candidateCustomerRouterIpv6Address`
24285
+ # @return [String]
24286
+ attr_accessor :candidate_customer_router_ipv6_address
24287
+
23765
24288
  # This field is not available.
23766
24289
  # Corresponds to the JSON property `candidateIpv6Subnets`
23767
24290
  # @return [Array<String>]
23768
24291
  attr_accessor :candidate_ipv6_subnets
23769
24292
 
23770
- # Up to 16 candidate prefixes that can be used to restrict the allocation of
23771
- # cloudRouterIpAddress and customerRouterIpAddress for this attachment. All
23772
- # prefixes must be within link-local address space (169.254.0.0/16) and must be /
23773
- # 29 or shorter (/28, /27, etc). Google will attempt to select an unused /29
23774
- # from the supplied candidate prefix(es). The request will fail if all possible /
23775
- # 29s are in use on Google's edge. If not supplied, Google will randomly select
23776
- # an unused /29 from all of link-local space.
24293
+ # Input only. Up to 16 candidate prefixes that can be used to restrict the
24294
+ # allocation of cloudRouterIpAddress and customerRouterIpAddress for this
24295
+ # attachment. All prefixes must be within link-local address space (169.254.0.0/
24296
+ # 16) and must be /29 or shorter (/28, /27, etc). Google will attempt to select
24297
+ # an unused /29 from the supplied candidate prefix(es). The request will fail if
24298
+ # all possible /29s are in use on Google's edge. If not supplied, Google will
24299
+ # randomly select an unused /29 from all of link-local space.
23777
24300
  # Corresponds to the JSON property `candidateSubnets`
23778
24301
  # @return [Array<String>]
23779
24302
  attr_accessor :candidate_subnets
@@ -23835,8 +24358,8 @@ module Google
23835
24358
  # @return [String]
23836
24359
  attr_accessor :description
23837
24360
 
23838
- # Desired availability domain for the attachment. Only available for type
23839
- # PARTNER, at creation time, and can take one of the following values: -
24361
+ # Input only. Desired availability domain for the attachment. Only available for
24362
+ # type PARTNER, at creation time, and can take one of the following values: -
23840
24363
  # AVAILABILITY_DOMAIN_ANY - AVAILABILITY_DOMAIN_1 - AVAILABILITY_DOMAIN_2 For
23841
24364
  # improved reliability, customers should configure a pair of attachments, one
23842
24365
  # per availability domain. The selected availability domain will be provided to
@@ -24048,13 +24571,13 @@ module Google
24048
24571
  # @return [String]
24049
24572
  attr_accessor :state
24050
24573
 
24051
- # Length of the IPv4 subnet mask. Allowed values: - 29 (default) - 30 The
24052
- # default value is 29, except for Cross-Cloud Interconnect connections that use
24053
- # an InterconnectRemoteLocation with a constraints.subnetLengthRange.min equal
24054
- # to 30. For example, connections that use an Azure remote location fall into
24055
- # this category. In these cases, the default value is 30, and requesting 29
24056
- # returns an error. Where both 29 and 30 are allowed, 29 is preferred, because
24057
- # it gives Google Cloud Support more debugging visibility.
24574
+ # Input only. Length of the IPv4 subnet mask. Allowed values: - 29 (default) -
24575
+ # 30 The default value is 29, except for Cross-Cloud Interconnect connections
24576
+ # that use an InterconnectRemoteLocation with a constraints.subnetLengthRange.
24577
+ # min equal to 30. For example, connections that use an Azure remote location
24578
+ # fall into this category. In these cases, the default value is 30, and
24579
+ # requesting 29 returns an error. Where both 29 and 30 are allowed, 29 is
24580
+ # preferred, because it gives Google Cloud Support more debugging visibility.
24058
24581
  # Corresponds to the JSON property `subnetLength`
24059
24582
  # @return [Fixnum]
24060
24583
  attr_accessor :subnet_length
@@ -24083,6 +24606,10 @@ module Google
24083
24606
  @admin_enabled = args[:admin_enabled] if args.key?(:admin_enabled)
24084
24607
  @attachment_group = args[:attachment_group] if args.key?(:attachment_group)
24085
24608
  @bandwidth = args[:bandwidth] if args.key?(:bandwidth)
24609
+ @candidate_cloud_router_ip_address = args[:candidate_cloud_router_ip_address] if args.key?(:candidate_cloud_router_ip_address)
24610
+ @candidate_cloud_router_ipv6_address = args[:candidate_cloud_router_ipv6_address] if args.key?(:candidate_cloud_router_ipv6_address)
24611
+ @candidate_customer_router_ip_address = args[:candidate_customer_router_ip_address] if args.key?(:candidate_customer_router_ip_address)
24612
+ @candidate_customer_router_ipv6_address = args[:candidate_customer_router_ipv6_address] if args.key?(:candidate_customer_router_ipv6_address)
24086
24613
  @candidate_ipv6_subnets = args[:candidate_ipv6_subnets] if args.key?(:candidate_ipv6_subnets)
24087
24614
  @candidate_subnets = args[:candidate_subnets] if args.key?(:candidate_subnets)
24088
24615
  @cloud_router_ip_address = args[:cloud_router_ip_address] if args.key?(:cloud_router_ip_address)
@@ -24520,6 +25047,13 @@ module Google
24520
25047
  # @return [Array<String>]
24521
25048
  attr_accessor :metros
24522
25049
 
25050
+ # [Output Only] Regions used to explain this blocker in more detail. These are
25051
+ # region names formatted like "us-central1". This will be set for some blockers (
25052
+ # like INCOMPATIBLE_REGIONS) but does not apply to others.
25053
+ # Corresponds to the JSON property `regions`
25054
+ # @return [Array<String>]
25055
+ attr_accessor :regions
25056
+
24523
25057
  # [Output Only] Zones used to explain this blocker in more detail. Format is "
24524
25058
  # zone1" and/or "zone2". This will be set for some blockers (like MISSING_ZONE)
24525
25059
  # but does not apply to others.
@@ -24538,6 +25072,7 @@ module Google
24538
25072
  @documentation_link = args[:documentation_link] if args.key?(:documentation_link)
24539
25073
  @explanation = args[:explanation] if args.key?(:explanation)
24540
25074
  @metros = args[:metros] if args.key?(:metros)
25075
+ @regions = args[:regions] if args.key?(:regions)
24541
25076
  @zones = args[:zones] if args.key?(:zones)
24542
25077
  end
24543
25078
  end
@@ -24686,6 +25221,31 @@ module Google
24686
25221
  end
24687
25222
  end
24688
25223
 
25224
+ # Response for the InterconnectAttachmentGroupsGetOperationalStatusResponse.
25225
+ class InterconnectAttachmentGroupsGetOperationalStatusResponse
25226
+ include Google::Apis::Core::Hashable
25227
+
25228
+ #
25229
+ # Corresponds to the JSON property `etag`
25230
+ # @return [String]
25231
+ attr_accessor :etag
25232
+
25233
+ #
25234
+ # Corresponds to the JSON property `result`
25235
+ # @return [Google::Apis::ComputeAlpha::InterconnectAttachmentGroupsOperationalStatus]
25236
+ attr_accessor :result
25237
+
25238
+ def initialize(**args)
25239
+ update!(**args)
25240
+ end
25241
+
25242
+ # Update properties of this object
25243
+ def update!(**args)
25244
+ @etag = args[:etag] if args.key?(:etag)
25245
+ @result = args[:result] if args.key?(:result)
25246
+ end
25247
+ end
25248
+
24689
25249
  #
24690
25250
  class InterconnectAttachmentGroupsListResponse
24691
25251
  include Google::Apis::Core::Hashable
@@ -24816,6 +25376,25 @@ module Google
24816
25376
  end
24817
25377
  end
24818
25378
 
25379
+ #
25380
+ class InterconnectAttachmentGroupsOperationalStatus
25381
+ include Google::Apis::Core::Hashable
25382
+
25383
+ # Summarizes the status of the group.
25384
+ # Corresponds to the JSON property `groupStatus`
25385
+ # @return [String]
25386
+ attr_accessor :group_status
25387
+
25388
+ def initialize(**args)
25389
+ update!(**args)
25390
+ end
25391
+
25392
+ # Update properties of this object
25393
+ def update!(**args)
25394
+ @group_status = args[:group_status] if args.key?(:group_status)
25395
+ end
25396
+ end
25397
+
24819
25398
  # Response to the list request, and contains a list of interconnect attachments.
24820
25399
  class InterconnectAttachmentList
24821
25400
  include Google::Apis::Core::Hashable
@@ -25699,6 +26278,31 @@ module Google
25699
26278
  end
25700
26279
  end
25701
26280
 
26281
+ # Response for the InterconnectGroupsGetOperationalStatusResponse.
26282
+ class InterconnectGroupsGetOperationalStatusResponse
26283
+ include Google::Apis::Core::Hashable
26284
+
26285
+ #
26286
+ # Corresponds to the JSON property `etag`
26287
+ # @return [String]
26288
+ attr_accessor :etag
26289
+
26290
+ # Request to get the status of the interconnect group with extra detail.
26291
+ # Corresponds to the JSON property `result`
26292
+ # @return [Google::Apis::ComputeAlpha::InterconnectGroupsOperationalStatus]
26293
+ attr_accessor :result
26294
+
26295
+ def initialize(**args)
26296
+ update!(**args)
26297
+ end
26298
+
26299
+ # Update properties of this object
26300
+ def update!(**args)
26301
+ @etag = args[:etag] if args.key?(:etag)
26302
+ @result = args[:result] if args.key?(:result)
26303
+ end
26304
+ end
26305
+
25702
26306
  #
25703
26307
  class InterconnectGroupsListResponse
25704
26308
  include Google::Apis::Core::Hashable
@@ -25829,6 +26433,94 @@ module Google
25829
26433
  end
25830
26434
  end
25831
26435
 
26436
+ # Request to get the status of the interconnect group with extra detail.
26437
+ class InterconnectGroupsOperationalStatus
26438
+ include Google::Apis::Core::Hashable
26439
+
26440
+ # [Output Only] The status of the group as configured. This has the same
26441
+ # structure as the operational field reported by the OperationalStatus method,
26442
+ # but does not take into account the operational status of each resource.
26443
+ # Corresponds to the JSON property `configured`
26444
+ # @return [Google::Apis::ComputeAlpha::InterconnectGroupConfigured]
26445
+ attr_accessor :configured
26446
+
26447
+ # Summarizes the status of the group.
26448
+ # Corresponds to the JSON property `groupStatus`
26449
+ # @return [String]
26450
+ attr_accessor :group_status
26451
+
26452
+ # The user's intent for this group. This is the only required field besides the
26453
+ # name that must be specified on group creation.
26454
+ # Corresponds to the JSON property `intent`
26455
+ # @return [Google::Apis::ComputeAlpha::InterconnectGroupIntent]
26456
+ attr_accessor :intent
26457
+
26458
+ #
26459
+ # Corresponds to the JSON property `interconnectStatuses`
26460
+ # @return [Array<Google::Apis::ComputeAlpha::InterconnectGroupsOperationalStatusInterconnectStatus>]
26461
+ attr_accessor :interconnect_statuses
26462
+
26463
+ # [Output Only] The status of the group as configured. This has the same
26464
+ # structure as the operational field reported by the OperationalStatus method,
26465
+ # but does not take into account the operational status of each resource.
26466
+ # Corresponds to the JSON property `operational`
26467
+ # @return [Google::Apis::ComputeAlpha::InterconnectGroupConfigured]
26468
+ attr_accessor :operational
26469
+
26470
+ def initialize(**args)
26471
+ update!(**args)
26472
+ end
26473
+
26474
+ # Update properties of this object
26475
+ def update!(**args)
26476
+ @configured = args[:configured] if args.key?(:configured)
26477
+ @group_status = args[:group_status] if args.key?(:group_status)
26478
+ @intent = args[:intent] if args.key?(:intent)
26479
+ @interconnect_statuses = args[:interconnect_statuses] if args.key?(:interconnect_statuses)
26480
+ @operational = args[:operational] if args.key?(:operational)
26481
+ end
26482
+ end
26483
+
26484
+ # The status of one Interconnect in the group. The order is arbitrary.
26485
+ class InterconnectGroupsOperationalStatusInterconnectStatus
26486
+ include Google::Apis::Core::Hashable
26487
+
26488
+ # Whether the Interconnect is enabled.
26489
+ # Corresponds to the JSON property `adminEnabled`
26490
+ # @return [Boolean]
26491
+ attr_accessor :admin_enabled
26492
+ alias_method :admin_enabled?, :admin_enabled
26493
+
26494
+ # Diagnostics information about the Interconnect connection, which contains
26495
+ # detailed and current technical information about Google's side of the
26496
+ # connection.
26497
+ # Corresponds to the JSON property `diagnostics`
26498
+ # @return [Google::Apis::ComputeAlpha::InterconnectDiagnostics]
26499
+ attr_accessor :diagnostics
26500
+
26501
+ # The URL of the Interconnect being described.
26502
+ # Corresponds to the JSON property `interconnect`
26503
+ # @return [String]
26504
+ attr_accessor :interconnect
26505
+
26506
+ # Whether this interconnect is participating in the redundant configuration.
26507
+ # Corresponds to the JSON property `isActive`
26508
+ # @return [String]
26509
+ attr_accessor :is_active
26510
+
26511
+ def initialize(**args)
26512
+ update!(**args)
26513
+ end
26514
+
26515
+ # Update properties of this object
26516
+ def update!(**args)
26517
+ @admin_enabled = args[:admin_enabled] if args.key?(:admin_enabled)
26518
+ @diagnostics = args[:diagnostics] if args.key?(:diagnostics)
26519
+ @interconnect = args[:interconnect] if args.key?(:interconnect)
26520
+ @is_active = args[:is_active] if args.key?(:is_active)
26521
+ end
26522
+ end
26523
+
25832
26524
  # Response to the list request, and contains a list of interconnects.
25833
26525
  class InterconnectList
25834
26526
  include Google::Apis::Core::Hashable
@@ -31989,6 +32681,130 @@ module Google
31989
32681
  end
31990
32682
  end
31991
32683
 
32684
+ #
32685
+ class NetworkFirewallPolicyAggregatedList
32686
+ include Google::Apis::Core::Hashable
32687
+
32688
+ # [Output Only] Unique identifier for the resource; defined by the server.
32689
+ # Corresponds to the JSON property `id`
32690
+ # @return [String]
32691
+ attr_accessor :id
32692
+
32693
+ # A list of FirewallPoliciesScopedList resources.
32694
+ # Corresponds to the JSON property `items`
32695
+ # @return [Hash<String,Google::Apis::ComputeAlpha::FirewallPoliciesScopedList>]
32696
+ attr_accessor :items
32697
+
32698
+ # [Output Only] Type of resource. Always compute#
32699
+ # networkFirewallPoliciesAggregatedList for lists of network firewall policies.
32700
+ # Corresponds to the JSON property `kind`
32701
+ # @return [String]
32702
+ attr_accessor :kind
32703
+
32704
+ # [Output Only] This token allows you to get the next page of results for list
32705
+ # requests. If the number of results is larger than maxResults, use the
32706
+ # nextPageToken as a value for the query parameter pageToken in the next list
32707
+ # request. Subsequent list requests will have their own nextPageToken to
32708
+ # continue paging through the results.
32709
+ # Corresponds to the JSON property `nextPageToken`
32710
+ # @return [String]
32711
+ attr_accessor :next_page_token
32712
+
32713
+ # [Output Only] Server-defined URL for this resource.
32714
+ # Corresponds to the JSON property `selfLink`
32715
+ # @return [String]
32716
+ attr_accessor :self_link
32717
+
32718
+ # [Output Only] Unreachable resources.
32719
+ # Corresponds to the JSON property `unreachables`
32720
+ # @return [Array<String>]
32721
+ attr_accessor :unreachables
32722
+
32723
+ # [Output Only] Informational warning message.
32724
+ # Corresponds to the JSON property `warning`
32725
+ # @return [Google::Apis::ComputeAlpha::NetworkFirewallPolicyAggregatedList::Warning]
32726
+ attr_accessor :warning
32727
+
32728
+ def initialize(**args)
32729
+ update!(**args)
32730
+ end
32731
+
32732
+ # Update properties of this object
32733
+ def update!(**args)
32734
+ @id = args[:id] if args.key?(:id)
32735
+ @items = args[:items] if args.key?(:items)
32736
+ @kind = args[:kind] if args.key?(:kind)
32737
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
32738
+ @self_link = args[:self_link] if args.key?(:self_link)
32739
+ @unreachables = args[:unreachables] if args.key?(:unreachables)
32740
+ @warning = args[:warning] if args.key?(:warning)
32741
+ end
32742
+
32743
+ # [Output Only] Informational warning message.
32744
+ class Warning
32745
+ include Google::Apis::Core::Hashable
32746
+
32747
+ # [Output Only] A warning code, if applicable. For example, Compute Engine
32748
+ # returns NO_RESULTS_ON_PAGE if there are no results in the response.
32749
+ # Corresponds to the JSON property `code`
32750
+ # @return [String]
32751
+ attr_accessor :code
32752
+
32753
+ # [Output Only] Metadata about this warning in key: value format. For example: "
32754
+ # data": [ ` "key": "scope", "value": "zones/us-east1-d" `
32755
+ # Corresponds to the JSON property `data`
32756
+ # @return [Array<Google::Apis::ComputeAlpha::NetworkFirewallPolicyAggregatedList::Warning::Datum>]
32757
+ attr_accessor :data
32758
+
32759
+ # [Output Only] A human-readable description of the warning code.
32760
+ # Corresponds to the JSON property `message`
32761
+ # @return [String]
32762
+ attr_accessor :message
32763
+
32764
+ def initialize(**args)
32765
+ update!(**args)
32766
+ end
32767
+
32768
+ # Update properties of this object
32769
+ def update!(**args)
32770
+ @code = args[:code] if args.key?(:code)
32771
+ @data = args[:data] if args.key?(:data)
32772
+ @message = args[:message] if args.key?(:message)
32773
+ end
32774
+
32775
+ #
32776
+ class Datum
32777
+ include Google::Apis::Core::Hashable
32778
+
32779
+ # [Output Only] A key that provides more detail on the warning being returned.
32780
+ # For example, for warnings where there are no results in a list request for a
32781
+ # particular zone, this key might be scope and the key value might be the zone
32782
+ # name. Other examples might be a key indicating a deprecated resource and a
32783
+ # suggested replacement, or a warning about invalid network settings (for
32784
+ # example, if an instance attempts to perform IP forwarding but is not enabled
32785
+ # for IP forwarding).
32786
+ # Corresponds to the JSON property `key`
32787
+ # @return [String]
32788
+ attr_accessor :key
32789
+
32790
+ # [Output Only] A warning data value corresponding to the key.
32791
+ # Corresponds to the JSON property `value`
32792
+ # @return [String]
32793
+ attr_accessor :value
32794
+
32795
+ def initialize(**args)
32796
+ update!(**args)
32797
+ end
32798
+
32799
+ # Update properties of this object
32800
+ def update!(**args)
32801
+ @key = args[:key] if args.key?(:key)
32802
+ @value = args[:value] if args.key?(:value)
32803
+ end
32804
+ end
32805
+ end
32806
+ end
32807
+
31992
32808
  # A network interface resource attached to an instance.
31993
32809
  class NetworkInterface
31994
32810
  include Google::Apis::Core::Hashable
@@ -43018,6 +43834,11 @@ module Google
43018
43834
  # @return [String]
43019
43835
  attr_accessor :collocation
43020
43836
 
43837
+ # Specifies the shape of the GPU slice, in slice based GPU families eg. A4X.
43838
+ # Corresponds to the JSON property `gpuTopology`
43839
+ # @return [String]
43840
+ attr_accessor :gpu_topology
43841
+
43021
43842
  # Specifies the number of max logical switches.
43022
43843
  # Corresponds to the JSON property `maxDistance`
43023
43844
  # @return [Fixnum]
@@ -43053,6 +43874,7 @@ module Google
43053
43874
  def update!(**args)
43054
43875
  @availability_domain_count = args[:availability_domain_count] if args.key?(:availability_domain_count)
43055
43876
  @collocation = args[:collocation] if args.key?(:collocation)
43877
+ @gpu_topology = args[:gpu_topology] if args.key?(:gpu_topology)
43056
43878
  @max_distance = args[:max_distance] if args.key?(:max_distance)
43057
43879
  @scope = args[:scope] if args.key?(:scope)
43058
43880
  @slice_count = args[:slice_count] if args.key?(:slice_count)
@@ -56124,14 +56946,15 @@ module Google
56124
56946
  # to INTERNAL_SELF_MANAGED. The URLs should refer to a SSL Certificate resource
56125
56947
  # or Certificate Manager Certificate resource. Mixing Classic Certificates and
56126
56948
  # Certificate Manager Certificates is not allowed. Certificate Manager
56127
- # Certificates must include the certificatemanager API. Certificate Manager
56128
- # Certificates are not supported by Global external Application Load Balancer or
56129
- # Classic Application Load Balancer, use certificate_map instead. Currently, you
56130
- # may specify up to 15 Classic SSL Certificates. Certificate Manager
56131
- # Certificates accepted formats are: - //certificatemanager.googleapis.com/
56132
- # projects/`project`/locations/` location`/certificates/`resourceName`. - https:/
56133
- # /certificatemanager.googleapis.com/v1alpha1/projects/`project `/locations/`
56134
- # location`/certificates/`resourceName`.
56949
+ # Certificates must include the certificatemanager API namespace. Using
56950
+ # Certificate Manager Certificates in this field is not supported by Global
56951
+ # external Application Load Balancer or Classic Application Load Balancer, use
56952
+ # certificate_map instead. Currently, you may specify up to 15 Classic SSL
56953
+ # Certificates or up to 100 Certificate Manager Certificates. Certificate
56954
+ # Manager Certificates accepted formats are: - //certificatemanager.googleapis.
56955
+ # com/projects/`project`/locations/` location`/certificates/`resourceName`. -
56956
+ # https://certificatemanager.googleapis.com/v1alpha1/projects/`project `/
56957
+ # locations/`location`/certificates/`resourceName`.
56135
56958
  # Corresponds to the JSON property `sslCertificates`
56136
56959
  # @return [Array<String>]
56137
56960
  attr_accessor :ssl_certificates
@@ -60027,7 +60850,7 @@ module Google
60027
60850
 
60028
60851
  # [Output Only] Informational warning messages for failures encountered from
60029
60852
  # scopes.
60030
- # Corresponds to the JSON property `scoped_warnings`
60853
+ # Corresponds to the JSON property `scopedWarnings`
60031
60854
  # @return [Array<Google::Apis::ComputeAlpha::SubnetworksScopedWarning>]
60032
60855
  attr_accessor :scoped_warnings
60033
60856