google-apis-compute_v1 0.107.0 → 0.109.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/compute_v1/classes.rb +104 -786
- data/lib/google/apis/compute_v1/gem_version.rb +2 -2
- data/lib/google/apis/compute_v1/representations.rb +21 -306
- data/lib/google/apis/compute_v1/service.rb +0 -444
- metadata +4 -4
@@ -1843,11 +1843,6 @@ module Google
|
|
1843
1843
|
# @return [Array<Google::Apis::ComputeV1::AuditLogConfig>]
|
1844
1844
|
attr_accessor :audit_log_configs
|
1845
1845
|
|
1846
|
-
# This is deprecated and has no effect. Do not use.
|
1847
|
-
# Corresponds to the JSON property `exemptedMembers`
|
1848
|
-
# @return [Array<String>]
|
1849
|
-
attr_accessor :exempted_members
|
1850
|
-
|
1851
1846
|
# Specifies a service that will be enabled for audit logging. For example, `
|
1852
1847
|
# storage.googleapis.com`, `cloudsql.googleapis.com`. `allServices` is a special
|
1853
1848
|
# value that covers all services.
|
@@ -1862,7 +1857,6 @@ module Google
|
|
1862
1857
|
# Update properties of this object
|
1863
1858
|
def update!(**args)
|
1864
1859
|
@audit_log_configs = args[:audit_log_configs] if args.key?(:audit_log_configs)
|
1865
|
-
@exempted_members = args[:exempted_members] if args.key?(:exempted_members)
|
1866
1860
|
@service = args[:service] if args.key?(:service)
|
1867
1861
|
end
|
1868
1862
|
end
|
@@ -1881,12 +1875,6 @@ module Google
|
|
1881
1875
|
# @return [Array<String>]
|
1882
1876
|
attr_accessor :exempted_members
|
1883
1877
|
|
1884
|
-
# This is deprecated and has no effect. Do not use.
|
1885
|
-
# Corresponds to the JSON property `ignoreChildExemptions`
|
1886
|
-
# @return [Boolean]
|
1887
|
-
attr_accessor :ignore_child_exemptions
|
1888
|
-
alias_method :ignore_child_exemptions?, :ignore_child_exemptions
|
1889
|
-
|
1890
1878
|
# The log type that this config enables.
|
1891
1879
|
# Corresponds to the JSON property `logType`
|
1892
1880
|
# @return [String]
|
@@ -1899,7 +1887,6 @@ module Google
|
|
1899
1887
|
# Update properties of this object
|
1900
1888
|
def update!(**args)
|
1901
1889
|
@exempted_members = args[:exempted_members] if args.key?(:exempted_members)
|
1902
|
-
@ignore_child_exemptions = args[:ignore_child_exemptions] if args.key?(:ignore_child_exemptions)
|
1903
1890
|
@log_type = args[:log_type] if args.key?(:log_type)
|
1904
1891
|
end
|
1905
1892
|
end
|
@@ -3491,6 +3478,28 @@ module Google
|
|
3491
3478
|
# @return [Fixnum]
|
3492
3479
|
attr_accessor :id
|
3493
3480
|
|
3481
|
+
# Specifies a preference for traffic sent from the proxy to the backend (or from
|
3482
|
+
# the client to the backend for proxyless gRPC). The possible values are: -
|
3483
|
+
# IPV4_ONLY: Only send IPv4 traffic to the backends of the backend service (
|
3484
|
+
# Instance Group, Managed Instance Group, Network Endpoint Group), regardless of
|
3485
|
+
# traffic from the client to the proxy. Only IPv4 health checks are used to
|
3486
|
+
# check the health of the backends. This is the default setting. - PREFER_IPV6:
|
3487
|
+
# Prioritize the connection to the endpoint's IPv6 address over its IPv4 address
|
3488
|
+
# (provided there is a healthy IPv6 address). - IPV6_ONLY: Only send IPv6
|
3489
|
+
# traffic to the backends of the backend service (Instance Group, Managed
|
3490
|
+
# Instance Group, Network Endpoint Group), regardless of traffic from the client
|
3491
|
+
# to the proxy. Only IPv6 health checks are used to check the health of the
|
3492
|
+
# backends. This field is applicable to either: - Advanced global external
|
3493
|
+
# Application Load Balancer (load balancing scheme EXTERNAL_MANAGED), - Regional
|
3494
|
+
# external Application Load Balancer, - Internal proxy Network Load Balancer (
|
3495
|
+
# load balancing scheme INTERNAL_MANAGED), - Regional internal Application Load
|
3496
|
+
# Balancer (load balancing scheme INTERNAL_MANAGED), - Traffic Director with
|
3497
|
+
# Envoy proxies and proxyless gRPC (load balancing scheme INTERNAL_SELF_MANAGED).
|
3498
|
+
#
|
3499
|
+
# Corresponds to the JSON property `ipAddressSelectionPolicy`
|
3500
|
+
# @return [String]
|
3501
|
+
attr_accessor :ip_address_selection_policy
|
3502
|
+
|
3494
3503
|
# [Output Only] Type of resource. Always compute#backendService for backend
|
3495
3504
|
# services.
|
3496
3505
|
# Corresponds to the JSON property `kind`
|
@@ -3710,6 +3719,7 @@ module Google
|
|
3710
3719
|
@health_checks = args[:health_checks] if args.key?(:health_checks)
|
3711
3720
|
@iap = args[:iap] if args.key?(:iap)
|
3712
3721
|
@id = args[:id] if args.key?(:id)
|
3722
|
+
@ip_address_selection_policy = args[:ip_address_selection_policy] if args.key?(:ip_address_selection_policy)
|
3713
3723
|
@kind = args[:kind] if args.key?(:kind)
|
3714
3724
|
@load_balancing_scheme = args[:load_balancing_scheme] if args.key?(:load_balancing_scheme)
|
3715
3725
|
@locality_lb_policies = args[:locality_lb_policies] if args.key?(:locality_lb_policies)
|
@@ -5478,6 +5488,13 @@ module Google
|
|
5478
5488
|
# @return [String]
|
5479
5489
|
attr_accessor :creation_timestamp
|
5480
5490
|
|
5491
|
+
# [Input Only] Optional, specifies the CUD end time requested by the customer in
|
5492
|
+
# RFC3339 text format. Needed when the customer wants CUD's end date is later
|
5493
|
+
# than the start date + term duration.
|
5494
|
+
# Corresponds to the JSON property `customEndTimestamp`
|
5495
|
+
# @return [String]
|
5496
|
+
attr_accessor :custom_end_timestamp
|
5497
|
+
|
5481
5498
|
# An optional description of this resource. Provide this property when you
|
5482
5499
|
# create the resource.
|
5483
5500
|
# Corresponds to the JSON property `description`
|
@@ -5546,6 +5563,11 @@ module Google
|
|
5546
5563
|
# @return [Array<Google::Apis::ComputeV1::Reservation>]
|
5547
5564
|
attr_accessor :reservations
|
5548
5565
|
|
5566
|
+
# [Output Only] Contains output only fields.
|
5567
|
+
# Corresponds to the JSON property `resourceStatus`
|
5568
|
+
# @return [Google::Apis::ComputeV1::CommitmentResourceStatus]
|
5569
|
+
attr_accessor :resource_status
|
5570
|
+
|
5549
5571
|
# A list of commitment amounts for particular resources. Note that VCPU and
|
5550
5572
|
# MEMORY resource commitments must occur together.
|
5551
5573
|
# Corresponds to the JSON property `resources`
|
@@ -5596,6 +5618,7 @@ module Google
|
|
5596
5618
|
@auto_renew = args[:auto_renew] if args.key?(:auto_renew)
|
5597
5619
|
@category = args[:category] if args.key?(:category)
|
5598
5620
|
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
5621
|
+
@custom_end_timestamp = args[:custom_end_timestamp] if args.key?(:custom_end_timestamp)
|
5599
5622
|
@description = args[:description] if args.key?(:description)
|
5600
5623
|
@end_timestamp = args[:end_timestamp] if args.key?(:end_timestamp)
|
5601
5624
|
@existing_reservations = args[:existing_reservations] if args.key?(:existing_reservations)
|
@@ -5607,6 +5630,7 @@ module Google
|
|
5607
5630
|
@plan = args[:plan] if args.key?(:plan)
|
5608
5631
|
@region = args[:region] if args.key?(:region)
|
5609
5632
|
@reservations = args[:reservations] if args.key?(:reservations)
|
5633
|
+
@resource_status = args[:resource_status] if args.key?(:resource_status)
|
5610
5634
|
@resources = args[:resources] if args.key?(:resources)
|
5611
5635
|
@self_link = args[:self_link] if args.key?(:self_link)
|
5612
5636
|
@split_source_commitment = args[:split_source_commitment] if args.key?(:split_source_commitment)
|
@@ -5859,6 +5883,27 @@ module Google
|
|
5859
5883
|
end
|
5860
5884
|
end
|
5861
5885
|
|
5886
|
+
# [Output Only] Contains output only fields.
|
5887
|
+
class CommitmentResourceStatus
|
5888
|
+
include Google::Apis::Core::Hashable
|
5889
|
+
|
5890
|
+
# [Output Only] Indicates the end time of customer's eligibility to send custom
|
5891
|
+
# term requests in RFC3339 text format. Term extension requests that (not the
|
5892
|
+
# end time in the request) after this time will be rejected.
|
5893
|
+
# Corresponds to the JSON property `customTermEligibilityEndTimestamp`
|
5894
|
+
# @return [String]
|
5895
|
+
attr_accessor :custom_term_eligibility_end_timestamp
|
5896
|
+
|
5897
|
+
def initialize(**args)
|
5898
|
+
update!(**args)
|
5899
|
+
end
|
5900
|
+
|
5901
|
+
# Update properties of this object
|
5902
|
+
def update!(**args)
|
5903
|
+
@custom_term_eligibility_end_timestamp = args[:custom_term_eligibility_end_timestamp] if args.key?(:custom_term_eligibility_end_timestamp)
|
5904
|
+
end
|
5905
|
+
end
|
5906
|
+
|
5862
5907
|
#
|
5863
5908
|
class CommitmentsScopedList
|
5864
5909
|
include Google::Apis::Core::Hashable
|
@@ -10437,766 +10482,6 @@ module Google
|
|
10437
10482
|
end
|
10438
10483
|
end
|
10439
10484
|
|
10440
|
-
#
|
10441
|
-
class FutureReservation
|
10442
|
-
include Google::Apis::Core::Hashable
|
10443
|
-
|
10444
|
-
# Future timestamp when the FR auto-created reservations will be deleted by
|
10445
|
-
# Compute Engine. Format of this field must be a valid href="https://www.ietf.
|
10446
|
-
# org/rfc/rfc3339.txt">RFC3339 value.
|
10447
|
-
# Corresponds to the JSON property `autoCreatedReservationsDeleteTime`
|
10448
|
-
# @return [String]
|
10449
|
-
attr_accessor :auto_created_reservations_delete_time
|
10450
|
-
|
10451
|
-
# A Duration represents a fixed-length span of time represented as a count of
|
10452
|
-
# seconds and fractions of seconds at nanosecond resolution. It is independent
|
10453
|
-
# of any calendar and concepts like "day" or "month". Range is approximately 10,
|
10454
|
-
# 000 years.
|
10455
|
-
# Corresponds to the JSON property `autoCreatedReservationsDuration`
|
10456
|
-
# @return [Google::Apis::ComputeV1::Duration]
|
10457
|
-
attr_accessor :auto_created_reservations_duration
|
10458
|
-
|
10459
|
-
# Setting for enabling or disabling automatic deletion for auto-created
|
10460
|
-
# reservation. If set to true, auto-created reservations will be deleted at
|
10461
|
-
# Future Reservation's end time (default) or at user's defined timestamp if any
|
10462
|
-
# of the [auto_created_reservations_delete_time,
|
10463
|
-
# auto_created_reservations_duration] values is specified. For keeping auto-
|
10464
|
-
# created reservation indefinitely, this value should be set to false.
|
10465
|
-
# Corresponds to the JSON property `autoDeleteAutoCreatedReservations`
|
10466
|
-
# @return [Boolean]
|
10467
|
-
attr_accessor :auto_delete_auto_created_reservations
|
10468
|
-
alias_method :auto_delete_auto_created_reservations?, :auto_delete_auto_created_reservations
|
10469
|
-
|
10470
|
-
# [Output Only] The creation timestamp for this future reservation in RFC3339
|
10471
|
-
# text format.
|
10472
|
-
# Corresponds to the JSON property `creationTimestamp`
|
10473
|
-
# @return [String]
|
10474
|
-
attr_accessor :creation_timestamp
|
10475
|
-
|
10476
|
-
# An optional description of this resource. Provide this property when you
|
10477
|
-
# create the future reservation.
|
10478
|
-
# Corresponds to the JSON property `description`
|
10479
|
-
# @return [String]
|
10480
|
-
attr_accessor :description
|
10481
|
-
|
10482
|
-
# [Output Only] A unique identifier for this future reservation. The server
|
10483
|
-
# defines this identifier.
|
10484
|
-
# Corresponds to the JSON property `id`
|
10485
|
-
# @return [Fixnum]
|
10486
|
-
attr_accessor :id
|
10487
|
-
|
10488
|
-
# [Output Only] Type of the resource. Always compute#futureReservation for
|
10489
|
-
# future reservations.
|
10490
|
-
# Corresponds to the JSON property `kind`
|
10491
|
-
# @return [String]
|
10492
|
-
attr_accessor :kind
|
10493
|
-
|
10494
|
-
# The name of the resource, provided by the client when initially creating the
|
10495
|
-
# resource. The resource name must be 1-63 characters long, and comply with
|
10496
|
-
# RFC1035. Specifically, the name must be 1-63 characters long and match the
|
10497
|
-
# regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first
|
10498
|
-
# character must be a lowercase letter, and all following characters must be a
|
10499
|
-
# dash, lowercase letter, or digit, except the last character, which cannot be a
|
10500
|
-
# dash.
|
10501
|
-
# Corresponds to the JSON property `name`
|
10502
|
-
# @return [String]
|
10503
|
-
attr_accessor :name
|
10504
|
-
|
10505
|
-
# Name prefix for the reservations to be created at the time of delivery. The
|
10506
|
-
# name prefix must comply with RFC1035. Maximum allowed length for name prefix
|
10507
|
-
# is 20. Automatically created reservations name format will be -date-####.
|
10508
|
-
# Corresponds to the JSON property `namePrefix`
|
10509
|
-
# @return [String]
|
10510
|
-
attr_accessor :name_prefix
|
10511
|
-
|
10512
|
-
# Planning state before being submitted for evaluation
|
10513
|
-
# Corresponds to the JSON property `planningStatus`
|
10514
|
-
# @return [String]
|
10515
|
-
attr_accessor :planning_status
|
10516
|
-
|
10517
|
-
# [Output Only] Server-defined fully-qualified URL for this resource.
|
10518
|
-
# Corresponds to the JSON property `selfLink`
|
10519
|
-
# @return [String]
|
10520
|
-
attr_accessor :self_link
|
10521
|
-
|
10522
|
-
# [Output Only] Server-defined URL for this resource with the resource id.
|
10523
|
-
# Corresponds to the JSON property `selfLinkWithId`
|
10524
|
-
# @return [String]
|
10525
|
-
attr_accessor :self_link_with_id
|
10526
|
-
|
10527
|
-
# The share setting for reservations and sole tenancy node groups.
|
10528
|
-
# Corresponds to the JSON property `shareSettings`
|
10529
|
-
# @return [Google::Apis::ComputeV1::ShareSettings]
|
10530
|
-
attr_accessor :share_settings
|
10531
|
-
|
10532
|
-
# Future Reservation configuration to indicate instance properties and total
|
10533
|
-
# count.
|
10534
|
-
# Corresponds to the JSON property `specificSkuProperties`
|
10535
|
-
# @return [Google::Apis::ComputeV1::FutureReservationSpecificSkuProperties]
|
10536
|
-
attr_accessor :specific_sku_properties
|
10537
|
-
|
10538
|
-
# [Output only] Represents status related to the future reservation.
|
10539
|
-
# Corresponds to the JSON property `status`
|
10540
|
-
# @return [Google::Apis::ComputeV1::FutureReservationStatus]
|
10541
|
-
attr_accessor :status
|
10542
|
-
|
10543
|
-
# Time window for this Future Reservation.
|
10544
|
-
# Corresponds to the JSON property `timeWindow`
|
10545
|
-
# @return [Google::Apis::ComputeV1::FutureReservationTimeWindow]
|
10546
|
-
attr_accessor :time_window
|
10547
|
-
|
10548
|
-
# [Output Only] URL of the Zone where this future reservation resides.
|
10549
|
-
# Corresponds to the JSON property `zone`
|
10550
|
-
# @return [String]
|
10551
|
-
attr_accessor :zone
|
10552
|
-
|
10553
|
-
def initialize(**args)
|
10554
|
-
update!(**args)
|
10555
|
-
end
|
10556
|
-
|
10557
|
-
# Update properties of this object
|
10558
|
-
def update!(**args)
|
10559
|
-
@auto_created_reservations_delete_time = args[:auto_created_reservations_delete_time] if args.key?(:auto_created_reservations_delete_time)
|
10560
|
-
@auto_created_reservations_duration = args[:auto_created_reservations_duration] if args.key?(:auto_created_reservations_duration)
|
10561
|
-
@auto_delete_auto_created_reservations = args[:auto_delete_auto_created_reservations] if args.key?(:auto_delete_auto_created_reservations)
|
10562
|
-
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
10563
|
-
@description = args[:description] if args.key?(:description)
|
10564
|
-
@id = args[:id] if args.key?(:id)
|
10565
|
-
@kind = args[:kind] if args.key?(:kind)
|
10566
|
-
@name = args[:name] if args.key?(:name)
|
10567
|
-
@name_prefix = args[:name_prefix] if args.key?(:name_prefix)
|
10568
|
-
@planning_status = args[:planning_status] if args.key?(:planning_status)
|
10569
|
-
@self_link = args[:self_link] if args.key?(:self_link)
|
10570
|
-
@self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
|
10571
|
-
@share_settings = args[:share_settings] if args.key?(:share_settings)
|
10572
|
-
@specific_sku_properties = args[:specific_sku_properties] if args.key?(:specific_sku_properties)
|
10573
|
-
@status = args[:status] if args.key?(:status)
|
10574
|
-
@time_window = args[:time_window] if args.key?(:time_window)
|
10575
|
-
@zone = args[:zone] if args.key?(:zone)
|
10576
|
-
end
|
10577
|
-
end
|
10578
|
-
|
10579
|
-
#
|
10580
|
-
class FutureReservationSpecificSkuProperties
|
10581
|
-
include Google::Apis::Core::Hashable
|
10582
|
-
|
10583
|
-
# Properties of the SKU instances being reserved. Next ID: 9
|
10584
|
-
# Corresponds to the JSON property `instanceProperties`
|
10585
|
-
# @return [Google::Apis::ComputeV1::AllocationSpecificSkuAllocationReservedInstanceProperties]
|
10586
|
-
attr_accessor :instance_properties
|
10587
|
-
|
10588
|
-
# The instance template that will be used to populate the
|
10589
|
-
# ReservedInstanceProperties of the future reservation
|
10590
|
-
# Corresponds to the JSON property `sourceInstanceTemplate`
|
10591
|
-
# @return [String]
|
10592
|
-
attr_accessor :source_instance_template
|
10593
|
-
|
10594
|
-
# Total number of instances for which capacity assurance is requested at a
|
10595
|
-
# future time period.
|
10596
|
-
# Corresponds to the JSON property `totalCount`
|
10597
|
-
# @return [Fixnum]
|
10598
|
-
attr_accessor :total_count
|
10599
|
-
|
10600
|
-
def initialize(**args)
|
10601
|
-
update!(**args)
|
10602
|
-
end
|
10603
|
-
|
10604
|
-
# Update properties of this object
|
10605
|
-
def update!(**args)
|
10606
|
-
@instance_properties = args[:instance_properties] if args.key?(:instance_properties)
|
10607
|
-
@source_instance_template = args[:source_instance_template] if args.key?(:source_instance_template)
|
10608
|
-
@total_count = args[:total_count] if args.key?(:total_count)
|
10609
|
-
end
|
10610
|
-
end
|
10611
|
-
|
10612
|
-
# [Output only] Represents status related to the future reservation.
|
10613
|
-
class FutureReservationStatus
|
10614
|
-
include Google::Apis::Core::Hashable
|
10615
|
-
|
10616
|
-
# [Output Only] The current status of the requested amendment.
|
10617
|
-
# Corresponds to the JSON property `amendmentStatus`
|
10618
|
-
# @return [String]
|
10619
|
-
attr_accessor :amendment_status
|
10620
|
-
|
10621
|
-
# Fully qualified urls of the automatically created reservations at start_time.
|
10622
|
-
# Corresponds to the JSON property `autoCreatedReservations`
|
10623
|
-
# @return [Array<String>]
|
10624
|
-
attr_accessor :auto_created_reservations
|
10625
|
-
|
10626
|
-
# [Output Only] Represents the existing matching usage for the future
|
10627
|
-
# reservation.
|
10628
|
-
# Corresponds to the JSON property `existingMatchingUsageInfo`
|
10629
|
-
# @return [Google::Apis::ComputeV1::FutureReservationStatusExistingMatchingUsageInfo]
|
10630
|
-
attr_accessor :existing_matching_usage_info
|
10631
|
-
|
10632
|
-
# This count indicates the fulfilled capacity so far. This is set during "
|
10633
|
-
# PROVISIONING" state. This count also includes capacity delivered as part of
|
10634
|
-
# existing matching reservations.
|
10635
|
-
# Corresponds to the JSON property `fulfilledCount`
|
10636
|
-
# @return [Fixnum]
|
10637
|
-
attr_accessor :fulfilled_count
|
10638
|
-
|
10639
|
-
# The state that the future reservation will be reverted to should the amendment
|
10640
|
-
# be declined.
|
10641
|
-
# Corresponds to the JSON property `lastKnownGoodState`
|
10642
|
-
# @return [Google::Apis::ComputeV1::FutureReservationStatusLastKnownGoodState]
|
10643
|
-
attr_accessor :last_known_good_state
|
10644
|
-
|
10645
|
-
# Time when Future Reservation would become LOCKED, after which no modifications
|
10646
|
-
# to Future Reservation will be allowed. Applicable only after the Future
|
10647
|
-
# Reservation is in the APPROVED state. The lock_time is an RFC3339 string. The
|
10648
|
-
# procurement_status will transition to PROCURING state at this time.
|
10649
|
-
# Corresponds to the JSON property `lockTime`
|
10650
|
-
# @return [String]
|
10651
|
-
attr_accessor :lock_time
|
10652
|
-
|
10653
|
-
# Current state of this Future Reservation
|
10654
|
-
# Corresponds to the JSON property `procurementStatus`
|
10655
|
-
# @return [String]
|
10656
|
-
attr_accessor :procurement_status
|
10657
|
-
|
10658
|
-
# Properties to be set for the Future Reservation.
|
10659
|
-
# Corresponds to the JSON property `specificSkuProperties`
|
10660
|
-
# @return [Google::Apis::ComputeV1::FutureReservationStatusSpecificSkuProperties]
|
10661
|
-
attr_accessor :specific_sku_properties
|
10662
|
-
|
10663
|
-
def initialize(**args)
|
10664
|
-
update!(**args)
|
10665
|
-
end
|
10666
|
-
|
10667
|
-
# Update properties of this object
|
10668
|
-
def update!(**args)
|
10669
|
-
@amendment_status = args[:amendment_status] if args.key?(:amendment_status)
|
10670
|
-
@auto_created_reservations = args[:auto_created_reservations] if args.key?(:auto_created_reservations)
|
10671
|
-
@existing_matching_usage_info = args[:existing_matching_usage_info] if args.key?(:existing_matching_usage_info)
|
10672
|
-
@fulfilled_count = args[:fulfilled_count] if args.key?(:fulfilled_count)
|
10673
|
-
@last_known_good_state = args[:last_known_good_state] if args.key?(:last_known_good_state)
|
10674
|
-
@lock_time = args[:lock_time] if args.key?(:lock_time)
|
10675
|
-
@procurement_status = args[:procurement_status] if args.key?(:procurement_status)
|
10676
|
-
@specific_sku_properties = args[:specific_sku_properties] if args.key?(:specific_sku_properties)
|
10677
|
-
end
|
10678
|
-
end
|
10679
|
-
|
10680
|
-
# [Output Only] Represents the existing matching usage for the future
|
10681
|
-
# reservation.
|
10682
|
-
class FutureReservationStatusExistingMatchingUsageInfo
|
10683
|
-
include Google::Apis::Core::Hashable
|
10684
|
-
|
10685
|
-
# Count to represent min(FR total_count, matching_reserved_capacity+
|
10686
|
-
# matching_unreserved_instances)
|
10687
|
-
# Corresponds to the JSON property `count`
|
10688
|
-
# @return [Fixnum]
|
10689
|
-
attr_accessor :count
|
10690
|
-
|
10691
|
-
# Timestamp when the matching usage was calculated
|
10692
|
-
# Corresponds to the JSON property `timestamp`
|
10693
|
-
# @return [String]
|
10694
|
-
attr_accessor :timestamp
|
10695
|
-
|
10696
|
-
def initialize(**args)
|
10697
|
-
update!(**args)
|
10698
|
-
end
|
10699
|
-
|
10700
|
-
# Update properties of this object
|
10701
|
-
def update!(**args)
|
10702
|
-
@count = args[:count] if args.key?(:count)
|
10703
|
-
@timestamp = args[:timestamp] if args.key?(:timestamp)
|
10704
|
-
end
|
10705
|
-
end
|
10706
|
-
|
10707
|
-
# The state that the future reservation will be reverted to should the amendment
|
10708
|
-
# be declined.
|
10709
|
-
class FutureReservationStatusLastKnownGoodState
|
10710
|
-
include Google::Apis::Core::Hashable
|
10711
|
-
|
10712
|
-
# [Output Only] The description of the FutureReservation before an amendment was
|
10713
|
-
# requested.
|
10714
|
-
# Corresponds to the JSON property `description`
|
10715
|
-
# @return [String]
|
10716
|
-
attr_accessor :description
|
10717
|
-
|
10718
|
-
# [Output Only] Represents the existing matching usage for the future
|
10719
|
-
# reservation.
|
10720
|
-
# Corresponds to the JSON property `existingMatchingUsageInfo`
|
10721
|
-
# @return [Google::Apis::ComputeV1::FutureReservationStatusExistingMatchingUsageInfo]
|
10722
|
-
attr_accessor :existing_matching_usage_info
|
10723
|
-
|
10724
|
-
# The properties of the last known good state for the Future Reservation.
|
10725
|
-
# Corresponds to the JSON property `futureReservationSpecs`
|
10726
|
-
# @return [Google::Apis::ComputeV1::FutureReservationStatusLastKnownGoodStateFutureReservationSpecs]
|
10727
|
-
attr_accessor :future_reservation_specs
|
10728
|
-
|
10729
|
-
# [Output Only] The lock time of the FutureReservation before an amendment was
|
10730
|
-
# requested.
|
10731
|
-
# Corresponds to the JSON property `lockTime`
|
10732
|
-
# @return [String]
|
10733
|
-
attr_accessor :lock_time
|
10734
|
-
|
10735
|
-
# [Output Only] The name prefix of the Future Reservation before an amendment
|
10736
|
-
# was requested.
|
10737
|
-
# Corresponds to the JSON property `namePrefix`
|
10738
|
-
# @return [String]
|
10739
|
-
attr_accessor :name_prefix
|
10740
|
-
|
10741
|
-
# [Output Only] The status of the last known good state for the Future
|
10742
|
-
# Reservation.
|
10743
|
-
# Corresponds to the JSON property `procurementStatus`
|
10744
|
-
# @return [String]
|
10745
|
-
attr_accessor :procurement_status
|
10746
|
-
|
10747
|
-
def initialize(**args)
|
10748
|
-
update!(**args)
|
10749
|
-
end
|
10750
|
-
|
10751
|
-
# Update properties of this object
|
10752
|
-
def update!(**args)
|
10753
|
-
@description = args[:description] if args.key?(:description)
|
10754
|
-
@existing_matching_usage_info = args[:existing_matching_usage_info] if args.key?(:existing_matching_usage_info)
|
10755
|
-
@future_reservation_specs = args[:future_reservation_specs] if args.key?(:future_reservation_specs)
|
10756
|
-
@lock_time = args[:lock_time] if args.key?(:lock_time)
|
10757
|
-
@name_prefix = args[:name_prefix] if args.key?(:name_prefix)
|
10758
|
-
@procurement_status = args[:procurement_status] if args.key?(:procurement_status)
|
10759
|
-
end
|
10760
|
-
end
|
10761
|
-
|
10762
|
-
# The properties of the last known good state for the Future Reservation.
|
10763
|
-
class FutureReservationStatusLastKnownGoodStateFutureReservationSpecs
|
10764
|
-
include Google::Apis::Core::Hashable
|
10765
|
-
|
10766
|
-
# The share setting for reservations and sole tenancy node groups.
|
10767
|
-
# Corresponds to the JSON property `shareSettings`
|
10768
|
-
# @return [Google::Apis::ComputeV1::ShareSettings]
|
10769
|
-
attr_accessor :share_settings
|
10770
|
-
|
10771
|
-
# [Output Only] The previous instance related properties of the Future
|
10772
|
-
# Reservation.
|
10773
|
-
# Corresponds to the JSON property `specificSkuProperties`
|
10774
|
-
# @return [Google::Apis::ComputeV1::FutureReservationSpecificSkuProperties]
|
10775
|
-
attr_accessor :specific_sku_properties
|
10776
|
-
|
10777
|
-
# [Output Only] The previous time window of the Future Reservation.
|
10778
|
-
# Corresponds to the JSON property `timeWindow`
|
10779
|
-
# @return [Google::Apis::ComputeV1::FutureReservationTimeWindow]
|
10780
|
-
attr_accessor :time_window
|
10781
|
-
|
10782
|
-
def initialize(**args)
|
10783
|
-
update!(**args)
|
10784
|
-
end
|
10785
|
-
|
10786
|
-
# Update properties of this object
|
10787
|
-
def update!(**args)
|
10788
|
-
@share_settings = args[:share_settings] if args.key?(:share_settings)
|
10789
|
-
@specific_sku_properties = args[:specific_sku_properties] if args.key?(:specific_sku_properties)
|
10790
|
-
@time_window = args[:time_window] if args.key?(:time_window)
|
10791
|
-
end
|
10792
|
-
end
|
10793
|
-
|
10794
|
-
# Properties to be set for the Future Reservation.
|
10795
|
-
class FutureReservationStatusSpecificSkuProperties
|
10796
|
-
include Google::Apis::Core::Hashable
|
10797
|
-
|
10798
|
-
# ID of the instance template used to populate the Future Reservation properties.
|
10799
|
-
# Corresponds to the JSON property `sourceInstanceTemplateId`
|
10800
|
-
# @return [String]
|
10801
|
-
attr_accessor :source_instance_template_id
|
10802
|
-
|
10803
|
-
def initialize(**args)
|
10804
|
-
update!(**args)
|
10805
|
-
end
|
10806
|
-
|
10807
|
-
# Update properties of this object
|
10808
|
-
def update!(**args)
|
10809
|
-
@source_instance_template_id = args[:source_instance_template_id] if args.key?(:source_instance_template_id)
|
10810
|
-
end
|
10811
|
-
end
|
10812
|
-
|
10813
|
-
#
|
10814
|
-
class FutureReservationTimeWindow
|
10815
|
-
include Google::Apis::Core::Hashable
|
10816
|
-
|
10817
|
-
# A Duration represents a fixed-length span of time represented as a count of
|
10818
|
-
# seconds and fractions of seconds at nanosecond resolution. It is independent
|
10819
|
-
# of any calendar and concepts like "day" or "month". Range is approximately 10,
|
10820
|
-
# 000 years.
|
10821
|
-
# Corresponds to the JSON property `duration`
|
10822
|
-
# @return [Google::Apis::ComputeV1::Duration]
|
10823
|
-
attr_accessor :duration
|
10824
|
-
|
10825
|
-
#
|
10826
|
-
# Corresponds to the JSON property `endTime`
|
10827
|
-
# @return [String]
|
10828
|
-
attr_accessor :end_time
|
10829
|
-
|
10830
|
-
# Start time of the Future Reservation. The start_time is an RFC3339 string.
|
10831
|
-
# Corresponds to the JSON property `startTime`
|
10832
|
-
# @return [String]
|
10833
|
-
attr_accessor :start_time
|
10834
|
-
|
10835
|
-
def initialize(**args)
|
10836
|
-
update!(**args)
|
10837
|
-
end
|
10838
|
-
|
10839
|
-
# Update properties of this object
|
10840
|
-
def update!(**args)
|
10841
|
-
@duration = args[:duration] if args.key?(:duration)
|
10842
|
-
@end_time = args[:end_time] if args.key?(:end_time)
|
10843
|
-
@start_time = args[:start_time] if args.key?(:start_time)
|
10844
|
-
end
|
10845
|
-
end
|
10846
|
-
|
10847
|
-
# Contains a list of future reservations.
|
10848
|
-
class FutureReservationsAggregatedListResponse
|
10849
|
-
include Google::Apis::Core::Hashable
|
10850
|
-
|
10851
|
-
#
|
10852
|
-
# Corresponds to the JSON property `etag`
|
10853
|
-
# @return [String]
|
10854
|
-
attr_accessor :etag
|
10855
|
-
|
10856
|
-
# [Output Only] Unique identifier for the resource; defined by the server.
|
10857
|
-
# Corresponds to the JSON property `id`
|
10858
|
-
# @return [String]
|
10859
|
-
attr_accessor :id
|
10860
|
-
|
10861
|
-
# A list of Future reservation resources.
|
10862
|
-
# Corresponds to the JSON property `items`
|
10863
|
-
# @return [Hash<String,Google::Apis::ComputeV1::FutureReservationsScopedList>]
|
10864
|
-
attr_accessor :items
|
10865
|
-
|
10866
|
-
# [Output Only] Type of resource. Always compute#
|
10867
|
-
# futureReservationsAggregatedListResponse for future resevation aggregated list
|
10868
|
-
# response.
|
10869
|
-
# Corresponds to the JSON property `kind`
|
10870
|
-
# @return [String]
|
10871
|
-
attr_accessor :kind
|
10872
|
-
|
10873
|
-
# [Output Only] This token allows you to get the next page of results for list
|
10874
|
-
# requests. If the number of results is larger than maxResults, use the
|
10875
|
-
# nextPageToken as a value for the query parameter pageToken in the next list
|
10876
|
-
# request. Subsequent list requests will have their own nextPageToken to
|
10877
|
-
# continue paging through the results.
|
10878
|
-
# Corresponds to the JSON property `nextPageToken`
|
10879
|
-
# @return [String]
|
10880
|
-
attr_accessor :next_page_token
|
10881
|
-
|
10882
|
-
# [Output Only] Server-defined URL for this resource.
|
10883
|
-
# Corresponds to the JSON property `selfLink`
|
10884
|
-
# @return [String]
|
10885
|
-
attr_accessor :self_link
|
10886
|
-
|
10887
|
-
# [Output Only] Unreachable resources.
|
10888
|
-
# Corresponds to the JSON property `unreachables`
|
10889
|
-
# @return [Array<String>]
|
10890
|
-
attr_accessor :unreachables
|
10891
|
-
|
10892
|
-
# [Output Only] Informational warning message.
|
10893
|
-
# Corresponds to the JSON property `warning`
|
10894
|
-
# @return [Google::Apis::ComputeV1::FutureReservationsAggregatedListResponse::Warning]
|
10895
|
-
attr_accessor :warning
|
10896
|
-
|
10897
|
-
def initialize(**args)
|
10898
|
-
update!(**args)
|
10899
|
-
end
|
10900
|
-
|
10901
|
-
# Update properties of this object
|
10902
|
-
def update!(**args)
|
10903
|
-
@etag = args[:etag] if args.key?(:etag)
|
10904
|
-
@id = args[:id] if args.key?(:id)
|
10905
|
-
@items = args[:items] if args.key?(:items)
|
10906
|
-
@kind = args[:kind] if args.key?(:kind)
|
10907
|
-
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
10908
|
-
@self_link = args[:self_link] if args.key?(:self_link)
|
10909
|
-
@unreachables = args[:unreachables] if args.key?(:unreachables)
|
10910
|
-
@warning = args[:warning] if args.key?(:warning)
|
10911
|
-
end
|
10912
|
-
|
10913
|
-
# [Output Only] Informational warning message.
|
10914
|
-
class Warning
|
10915
|
-
include Google::Apis::Core::Hashable
|
10916
|
-
|
10917
|
-
# [Output Only] A warning code, if applicable. For example, Compute Engine
|
10918
|
-
# returns NO_RESULTS_ON_PAGE if there are no results in the response.
|
10919
|
-
# Corresponds to the JSON property `code`
|
10920
|
-
# @return [String]
|
10921
|
-
attr_accessor :code
|
10922
|
-
|
10923
|
-
# [Output Only] Metadata about this warning in key: value format. For example: "
|
10924
|
-
# data": [ ` "key": "scope", "value": "zones/us-east1-d" `
|
10925
|
-
# Corresponds to the JSON property `data`
|
10926
|
-
# @return [Array<Google::Apis::ComputeV1::FutureReservationsAggregatedListResponse::Warning::Datum>]
|
10927
|
-
attr_accessor :data
|
10928
|
-
|
10929
|
-
# [Output Only] A human-readable description of the warning code.
|
10930
|
-
# Corresponds to the JSON property `message`
|
10931
|
-
# @return [String]
|
10932
|
-
attr_accessor :message
|
10933
|
-
|
10934
|
-
def initialize(**args)
|
10935
|
-
update!(**args)
|
10936
|
-
end
|
10937
|
-
|
10938
|
-
# Update properties of this object
|
10939
|
-
def update!(**args)
|
10940
|
-
@code = args[:code] if args.key?(:code)
|
10941
|
-
@data = args[:data] if args.key?(:data)
|
10942
|
-
@message = args[:message] if args.key?(:message)
|
10943
|
-
end
|
10944
|
-
|
10945
|
-
#
|
10946
|
-
class Datum
|
10947
|
-
include Google::Apis::Core::Hashable
|
10948
|
-
|
10949
|
-
# [Output Only] A key that provides more detail on the warning being returned.
|
10950
|
-
# For example, for warnings where there are no results in a list request for a
|
10951
|
-
# particular zone, this key might be scope and the key value might be the zone
|
10952
|
-
# name. Other examples might be a key indicating a deprecated resource and a
|
10953
|
-
# suggested replacement, or a warning about invalid network settings (for
|
10954
|
-
# example, if an instance attempts to perform IP forwarding but is not enabled
|
10955
|
-
# for IP forwarding).
|
10956
|
-
# Corresponds to the JSON property `key`
|
10957
|
-
# @return [String]
|
10958
|
-
attr_accessor :key
|
10959
|
-
|
10960
|
-
# [Output Only] A warning data value corresponding to the key.
|
10961
|
-
# Corresponds to the JSON property `value`
|
10962
|
-
# @return [String]
|
10963
|
-
attr_accessor :value
|
10964
|
-
|
10965
|
-
def initialize(**args)
|
10966
|
-
update!(**args)
|
10967
|
-
end
|
10968
|
-
|
10969
|
-
# Update properties of this object
|
10970
|
-
def update!(**args)
|
10971
|
-
@key = args[:key] if args.key?(:key)
|
10972
|
-
@value = args[:value] if args.key?(:value)
|
10973
|
-
end
|
10974
|
-
end
|
10975
|
-
end
|
10976
|
-
end
|
10977
|
-
|
10978
|
-
#
|
10979
|
-
class FutureReservationsListResponse
|
10980
|
-
include Google::Apis::Core::Hashable
|
10981
|
-
|
10982
|
-
#
|
10983
|
-
# Corresponds to the JSON property `etag`
|
10984
|
-
# @return [String]
|
10985
|
-
attr_accessor :etag
|
10986
|
-
|
10987
|
-
# [Output Only] The unique identifier for the resource. This identifier is
|
10988
|
-
# defined by the server.
|
10989
|
-
# Corresponds to the JSON property `id`
|
10990
|
-
# @return [String]
|
10991
|
-
attr_accessor :id
|
10992
|
-
|
10993
|
-
# [Output Only] A list of future reservation resources.
|
10994
|
-
# Corresponds to the JSON property `items`
|
10995
|
-
# @return [Array<Google::Apis::ComputeV1::FutureReservation>]
|
10996
|
-
attr_accessor :items
|
10997
|
-
|
10998
|
-
# [Output Only] Type of resource.Always compute#FutureReservationsListResponse
|
10999
|
-
# for lists of reservations
|
11000
|
-
# Corresponds to the JSON property `kind`
|
11001
|
-
# @return [String]
|
11002
|
-
attr_accessor :kind
|
11003
|
-
|
11004
|
-
# [Output Only] This token allows you to get the next page of results for list
|
11005
|
-
# requests. If the number of results is larger than maxResults, use the
|
11006
|
-
# nextPageToken as a value for the query parameter pageToken in the next list
|
11007
|
-
# request. Subsequent list requests will have their own nextPageToken to
|
11008
|
-
# continue paging through the results.
|
11009
|
-
# Corresponds to the JSON property `nextPageToken`
|
11010
|
-
# @return [String]
|
11011
|
-
attr_accessor :next_page_token
|
11012
|
-
|
11013
|
-
# [Output Only] Server-defined URL for this resource.
|
11014
|
-
# Corresponds to the JSON property `selfLink`
|
11015
|
-
# @return [String]
|
11016
|
-
attr_accessor :self_link
|
11017
|
-
|
11018
|
-
# [Output Only] Unreachable resources.
|
11019
|
-
# Corresponds to the JSON property `unreachables`
|
11020
|
-
# @return [Array<String>]
|
11021
|
-
attr_accessor :unreachables
|
11022
|
-
|
11023
|
-
# [Output Only] Informational warning message.
|
11024
|
-
# Corresponds to the JSON property `warning`
|
11025
|
-
# @return [Google::Apis::ComputeV1::FutureReservationsListResponse::Warning]
|
11026
|
-
attr_accessor :warning
|
11027
|
-
|
11028
|
-
def initialize(**args)
|
11029
|
-
update!(**args)
|
11030
|
-
end
|
11031
|
-
|
11032
|
-
# Update properties of this object
|
11033
|
-
def update!(**args)
|
11034
|
-
@etag = args[:etag] if args.key?(:etag)
|
11035
|
-
@id = args[:id] if args.key?(:id)
|
11036
|
-
@items = args[:items] if args.key?(:items)
|
11037
|
-
@kind = args[:kind] if args.key?(:kind)
|
11038
|
-
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
11039
|
-
@self_link = args[:self_link] if args.key?(:self_link)
|
11040
|
-
@unreachables = args[:unreachables] if args.key?(:unreachables)
|
11041
|
-
@warning = args[:warning] if args.key?(:warning)
|
11042
|
-
end
|
11043
|
-
|
11044
|
-
# [Output Only] Informational warning message.
|
11045
|
-
class Warning
|
11046
|
-
include Google::Apis::Core::Hashable
|
11047
|
-
|
11048
|
-
# [Output Only] A warning code, if applicable. For example, Compute Engine
|
11049
|
-
# returns NO_RESULTS_ON_PAGE if there are no results in the response.
|
11050
|
-
# Corresponds to the JSON property `code`
|
11051
|
-
# @return [String]
|
11052
|
-
attr_accessor :code
|
11053
|
-
|
11054
|
-
# [Output Only] Metadata about this warning in key: value format. For example: "
|
11055
|
-
# data": [ ` "key": "scope", "value": "zones/us-east1-d" `
|
11056
|
-
# Corresponds to the JSON property `data`
|
11057
|
-
# @return [Array<Google::Apis::ComputeV1::FutureReservationsListResponse::Warning::Datum>]
|
11058
|
-
attr_accessor :data
|
11059
|
-
|
11060
|
-
# [Output Only] A human-readable description of the warning code.
|
11061
|
-
# Corresponds to the JSON property `message`
|
11062
|
-
# @return [String]
|
11063
|
-
attr_accessor :message
|
11064
|
-
|
11065
|
-
def initialize(**args)
|
11066
|
-
update!(**args)
|
11067
|
-
end
|
11068
|
-
|
11069
|
-
# Update properties of this object
|
11070
|
-
def update!(**args)
|
11071
|
-
@code = args[:code] if args.key?(:code)
|
11072
|
-
@data = args[:data] if args.key?(:data)
|
11073
|
-
@message = args[:message] if args.key?(:message)
|
11074
|
-
end
|
11075
|
-
|
11076
|
-
#
|
11077
|
-
class Datum
|
11078
|
-
include Google::Apis::Core::Hashable
|
11079
|
-
|
11080
|
-
# [Output Only] A key that provides more detail on the warning being returned.
|
11081
|
-
# For example, for warnings where there are no results in a list request for a
|
11082
|
-
# particular zone, this key might be scope and the key value might be the zone
|
11083
|
-
# name. Other examples might be a key indicating a deprecated resource and a
|
11084
|
-
# suggested replacement, or a warning about invalid network settings (for
|
11085
|
-
# example, if an instance attempts to perform IP forwarding but is not enabled
|
11086
|
-
# for IP forwarding).
|
11087
|
-
# Corresponds to the JSON property `key`
|
11088
|
-
# @return [String]
|
11089
|
-
attr_accessor :key
|
11090
|
-
|
11091
|
-
# [Output Only] A warning data value corresponding to the key.
|
11092
|
-
# Corresponds to the JSON property `value`
|
11093
|
-
# @return [String]
|
11094
|
-
attr_accessor :value
|
11095
|
-
|
11096
|
-
def initialize(**args)
|
11097
|
-
update!(**args)
|
11098
|
-
end
|
11099
|
-
|
11100
|
-
# Update properties of this object
|
11101
|
-
def update!(**args)
|
11102
|
-
@key = args[:key] if args.key?(:key)
|
11103
|
-
@value = args[:value] if args.key?(:value)
|
11104
|
-
end
|
11105
|
-
end
|
11106
|
-
end
|
11107
|
-
end
|
11108
|
-
|
11109
|
-
#
|
11110
|
-
class FutureReservationsScopedList
|
11111
|
-
include Google::Apis::Core::Hashable
|
11112
|
-
|
11113
|
-
# A list of future reservations contained in this scope.
|
11114
|
-
# Corresponds to the JSON property `futureReservations`
|
11115
|
-
# @return [Array<Google::Apis::ComputeV1::FutureReservation>]
|
11116
|
-
attr_accessor :future_reservations
|
11117
|
-
|
11118
|
-
# Informational warning which replaces the list of future reservations when the
|
11119
|
-
# list is empty.
|
11120
|
-
# Corresponds to the JSON property `warning`
|
11121
|
-
# @return [Google::Apis::ComputeV1::FutureReservationsScopedList::Warning]
|
11122
|
-
attr_accessor :warning
|
11123
|
-
|
11124
|
-
def initialize(**args)
|
11125
|
-
update!(**args)
|
11126
|
-
end
|
11127
|
-
|
11128
|
-
# Update properties of this object
|
11129
|
-
def update!(**args)
|
11130
|
-
@future_reservations = args[:future_reservations] if args.key?(:future_reservations)
|
11131
|
-
@warning = args[:warning] if args.key?(:warning)
|
11132
|
-
end
|
11133
|
-
|
11134
|
-
# Informational warning which replaces the list of future reservations when the
|
11135
|
-
# list is empty.
|
11136
|
-
class Warning
|
11137
|
-
include Google::Apis::Core::Hashable
|
11138
|
-
|
11139
|
-
# [Output Only] A warning code, if applicable. For example, Compute Engine
|
11140
|
-
# returns NO_RESULTS_ON_PAGE if there are no results in the response.
|
11141
|
-
# Corresponds to the JSON property `code`
|
11142
|
-
# @return [String]
|
11143
|
-
attr_accessor :code
|
11144
|
-
|
11145
|
-
# [Output Only] Metadata about this warning in key: value format. For example: "
|
11146
|
-
# data": [ ` "key": "scope", "value": "zones/us-east1-d" `
|
11147
|
-
# Corresponds to the JSON property `data`
|
11148
|
-
# @return [Array<Google::Apis::ComputeV1::FutureReservationsScopedList::Warning::Datum>]
|
11149
|
-
attr_accessor :data
|
11150
|
-
|
11151
|
-
# [Output Only] A human-readable description of the warning code.
|
11152
|
-
# Corresponds to the JSON property `message`
|
11153
|
-
# @return [String]
|
11154
|
-
attr_accessor :message
|
11155
|
-
|
11156
|
-
def initialize(**args)
|
11157
|
-
update!(**args)
|
11158
|
-
end
|
11159
|
-
|
11160
|
-
# Update properties of this object
|
11161
|
-
def update!(**args)
|
11162
|
-
@code = args[:code] if args.key?(:code)
|
11163
|
-
@data = args[:data] if args.key?(:data)
|
11164
|
-
@message = args[:message] if args.key?(:message)
|
11165
|
-
end
|
11166
|
-
|
11167
|
-
#
|
11168
|
-
class Datum
|
11169
|
-
include Google::Apis::Core::Hashable
|
11170
|
-
|
11171
|
-
# [Output Only] A key that provides more detail on the warning being returned.
|
11172
|
-
# For example, for warnings where there are no results in a list request for a
|
11173
|
-
# particular zone, this key might be scope and the key value might be the zone
|
11174
|
-
# name. Other examples might be a key indicating a deprecated resource and a
|
11175
|
-
# suggested replacement, or a warning about invalid network settings (for
|
11176
|
-
# example, if an instance attempts to perform IP forwarding but is not enabled
|
11177
|
-
# for IP forwarding).
|
11178
|
-
# Corresponds to the JSON property `key`
|
11179
|
-
# @return [String]
|
11180
|
-
attr_accessor :key
|
11181
|
-
|
11182
|
-
# [Output Only] A warning data value corresponding to the key.
|
11183
|
-
# Corresponds to the JSON property `value`
|
11184
|
-
# @return [String]
|
11185
|
-
attr_accessor :value
|
11186
|
-
|
11187
|
-
def initialize(**args)
|
11188
|
-
update!(**args)
|
11189
|
-
end
|
11190
|
-
|
11191
|
-
# Update properties of this object
|
11192
|
-
def update!(**args)
|
11193
|
-
@key = args[:key] if args.key?(:key)
|
11194
|
-
@value = args[:value] if args.key?(:value)
|
11195
|
-
end
|
11196
|
-
end
|
11197
|
-
end
|
11198
|
-
end
|
11199
|
-
|
11200
10485
|
#
|
11201
10486
|
class GrpcHealthCheck
|
11202
10487
|
include Google::Apis::Core::Hashable
|
@@ -12699,6 +11984,16 @@ module Google
|
|
12699
11984
|
# @return [String]
|
12700
11985
|
attr_accessor :ip_address
|
12701
11986
|
|
11987
|
+
#
|
11988
|
+
# Corresponds to the JSON property `ipv6Address`
|
11989
|
+
# @return [String]
|
11990
|
+
attr_accessor :ipv6_address
|
11991
|
+
|
11992
|
+
# Health state of the IPv6 address of the instance.
|
11993
|
+
# Corresponds to the JSON property `ipv6HealthState`
|
11994
|
+
# @return [String]
|
11995
|
+
attr_accessor :ipv6_health_state
|
11996
|
+
|
12702
11997
|
# The named port of the instance group, not necessarily the port that is health-
|
12703
11998
|
# checked.
|
12704
11999
|
# Corresponds to the JSON property `port`
|
@@ -12727,6 +12022,8 @@ module Google
|
|
12727
12022
|
@health_state = args[:health_state] if args.key?(:health_state)
|
12728
12023
|
@instance = args[:instance] if args.key?(:instance)
|
12729
12024
|
@ip_address = args[:ip_address] if args.key?(:ip_address)
|
12025
|
+
@ipv6_address = args[:ipv6_address] if args.key?(:ipv6_address)
|
12026
|
+
@ipv6_health_state = args[:ipv6_health_state] if args.key?(:ipv6_health_state)
|
12730
12027
|
@port = args[:port] if args.key?(:port)
|
12731
12028
|
@weight = args[:weight] if args.key?(:weight)
|
12732
12029
|
@weight_error = args[:weight_error] if args.key?(:weight_error)
|
@@ -19764,7 +19061,7 @@ module Google
|
|
19764
19061
|
alias_method :admin_enabled?, :admin_enabled
|
19765
19062
|
|
19766
19063
|
# [Output only] List of features available for this Interconnect connection,
|
19767
|
-
# which can take one of the following values: -
|
19064
|
+
# which can take one of the following values: - IF_MACSEC If present then the
|
19768
19065
|
# Interconnect connection is provisioned on MACsec capable hardware ports. If
|
19769
19066
|
# not present then the Interconnect connection is provisioned on non-MACsec
|
19770
19067
|
# capable ports and MACsec isn't supported and enabling MACsec fails.
|
@@ -19935,7 +19232,7 @@ module Google
|
|
19935
19232
|
attr_accessor :remote_location
|
19936
19233
|
|
19937
19234
|
# Optional. List of features requested for this Interconnect connection, which
|
19938
|
-
# can take one of the following values: -
|
19235
|
+
# can take one of the following values: - IF_MACSEC If specified then the
|
19939
19236
|
# connection is created on MACsec capable hardware ports. If not specified, the
|
19940
19237
|
# default value is false, which allocates non-MACsec capable ports first if
|
19941
19238
|
# available. This parameter can be provided only with Interconnect INSERT. It
|
@@ -28682,8 +27979,8 @@ module Google
|
|
28682
27979
|
attr_accessor :target_id
|
28683
27980
|
|
28684
27981
|
# [Output Only] The URL of the resource that the operation modifies. For
|
28685
|
-
# operations related to creating a snapshot, this points to the
|
28686
|
-
#
|
27982
|
+
# operations related to creating a snapshot, this points to the disk that the
|
27983
|
+
# snapshot was created from.
|
28687
27984
|
# Corresponds to the JSON property `targetLink`
|
28688
27985
|
# @return [String]
|
28689
27986
|
attr_accessor :target_link
|
@@ -33383,9 +32680,9 @@ module Google
|
|
33383
32680
|
# and traffic management table. This resource defines mappings from hostnames
|
33384
32681
|
# and URL paths to either a backend service or a backend bucket. To use the
|
33385
32682
|
# global urlMaps resource, the backend service must have a loadBalancingScheme
|
33386
|
-
# of either EXTERNAL or INTERNAL_SELF_MANAGED. To use the
|
33387
|
-
# the backend service must have a loadBalancingScheme of
|
33388
|
-
# more information, read URL Map Concepts.
|
32683
|
+
# of either EXTERNAL, EXTERNAL_MANAGED, or INTERNAL_SELF_MANAGED. To use the
|
32684
|
+
# regionUrlMaps resource, the backend service must have a loadBalancingScheme of
|
32685
|
+
# INTERNAL_MANAGED. For more information, read URL Map Concepts.
|
33389
32686
|
# Corresponds to the JSON property `resource`
|
33390
32687
|
# @return [Google::Apis::ComputeV1::UrlMap]
|
33391
32688
|
attr_accessor :resource
|
@@ -39302,6 +38599,19 @@ module Google
|
|
39302
38599
|
# @return [String]
|
39303
38600
|
attr_accessor :producer_forwarding_rule
|
39304
38601
|
|
38602
|
+
# The number of consumer spokes that connected Private Service Connect endpoints
|
38603
|
+
# can be propagated to through Network Connectivity Center. This limit lets the
|
38604
|
+
# service producer limit how many propagated Private Service Connect connections
|
38605
|
+
# can be established to this service attachment from a single consumer. If the
|
38606
|
+
# connection preference of the service attachment is ACCEPT_MANUAL, the limit
|
38607
|
+
# applies to each project or network that is listed in the consumer accept list.
|
38608
|
+
# If the connection preference of the service attachment is ACCEPT_AUTOMATIC,
|
38609
|
+
# the limit applies to each project that contains a connected endpoint. If
|
38610
|
+
# unspecified, the default propagated connection limit is 250.
|
38611
|
+
# Corresponds to the JSON property `propagatedConnectionLimit`
|
38612
|
+
# @return [Fixnum]
|
38613
|
+
attr_accessor :propagated_connection_limit
|
38614
|
+
|
39305
38615
|
# [Output Only] An 128-bit global unique ID of the PSC service attachment.
|
39306
38616
|
# Corresponds to the JSON property `pscServiceAttachmentId`
|
39307
38617
|
# @return [Google::Apis::ComputeV1::Uint128]
|
@@ -39359,6 +38669,7 @@ module Google
|
|
39359
38669
|
@name = args[:name] if args.key?(:name)
|
39360
38670
|
@nat_subnets = args[:nat_subnets] if args.key?(:nat_subnets)
|
39361
38671
|
@producer_forwarding_rule = args[:producer_forwarding_rule] if args.key?(:producer_forwarding_rule)
|
38672
|
+
@propagated_connection_limit = args[:propagated_connection_limit] if args.key?(:propagated_connection_limit)
|
39362
38673
|
@psc_service_attachment_id = args[:psc_service_attachment_id] if args.key?(:psc_service_attachment_id)
|
39363
38674
|
@reconcile_connections = args[:reconcile_connections] if args.key?(:reconcile_connections)
|
39364
38675
|
@region = args[:region] if args.key?(:region)
|
@@ -39504,6 +38815,12 @@ module Google
|
|
39504
38815
|
# @return [String]
|
39505
38816
|
attr_accessor :endpoint
|
39506
38817
|
|
38818
|
+
# The number of consumer Network Connectivity Center spokes that the connected
|
38819
|
+
# Private Service Connect endpoint has propagated to.
|
38820
|
+
# Corresponds to the JSON property `propagatedConnectionCount`
|
38821
|
+
# @return [Fixnum]
|
38822
|
+
attr_accessor :propagated_connection_count
|
38823
|
+
|
39507
38824
|
# The PSC connection id of the connected endpoint.
|
39508
38825
|
# Corresponds to the JSON property `pscConnectionId`
|
39509
38826
|
# @return [Fixnum]
|
@@ -39522,6 +38839,7 @@ module Google
|
|
39522
38839
|
def update!(**args)
|
39523
38840
|
@consumer_network = args[:consumer_network] if args.key?(:consumer_network)
|
39524
38841
|
@endpoint = args[:endpoint] if args.key?(:endpoint)
|
38842
|
+
@propagated_connection_count = args[:propagated_connection_count] if args.key?(:propagated_connection_count)
|
39525
38843
|
@psc_connection_id = args[:psc_connection_id] if args.key?(:psc_connection_id)
|
39526
38844
|
@status = args[:status] if args.key?(:status)
|
39527
38845
|
end
|
@@ -47591,9 +46909,9 @@ module Google
|
|
47591
46909
|
# and traffic management table. This resource defines mappings from hostnames
|
47592
46910
|
# and URL paths to either a backend service or a backend bucket. To use the
|
47593
46911
|
# global urlMaps resource, the backend service must have a loadBalancingScheme
|
47594
|
-
# of either EXTERNAL or INTERNAL_SELF_MANAGED. To use the
|
47595
|
-
# the backend service must have a loadBalancingScheme of
|
47596
|
-
# more information, read URL Map Concepts.
|
46912
|
+
# of either EXTERNAL, EXTERNAL_MANAGED, or INTERNAL_SELF_MANAGED. To use the
|
46913
|
+
# regionUrlMaps resource, the backend service must have a loadBalancingScheme of
|
46914
|
+
# INTERNAL_MANAGED. For more information, read URL Map Concepts.
|
47597
46915
|
class UrlMap
|
47598
46916
|
include Google::Apis::Core::Hashable
|
47599
46917
|
|
@@ -48262,9 +47580,9 @@ module Google
|
|
48262
47580
|
# and traffic management table. This resource defines mappings from hostnames
|
48263
47581
|
# and URL paths to either a backend service or a backend bucket. To use the
|
48264
47582
|
# global urlMaps resource, the backend service must have a loadBalancingScheme
|
48265
|
-
# of either EXTERNAL or INTERNAL_SELF_MANAGED. To use the
|
48266
|
-
# the backend service must have a loadBalancingScheme of
|
48267
|
-
# more information, read URL Map Concepts.
|
47583
|
+
# of either EXTERNAL, EXTERNAL_MANAGED, or INTERNAL_SELF_MANAGED. To use the
|
47584
|
+
# regionUrlMaps resource, the backend service must have a loadBalancingScheme of
|
47585
|
+
# INTERNAL_MANAGED. For more information, read URL Map Concepts.
|
48268
47586
|
# Corresponds to the JSON property `resource`
|
48269
47587
|
# @return [Google::Apis::ComputeV1::UrlMap]
|
48270
47588
|
attr_accessor :resource
|