google-apis-compute_v1 0.130.0 → 0.132.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/compute_v1/classes.rb +688 -1
- data/lib/google/apis/compute_v1/gem_version.rb +2 -2
- data/lib/google/apis/compute_v1/representations.rb +302 -0
- data/lib/google/apis/compute_v1/service.rb +1196 -90
- metadata +2 -2
@@ -7091,6 +7091,47 @@ module Google
|
|
7091
7091
|
end
|
7092
7092
|
end
|
7093
7093
|
|
7094
|
+
# Represents a whole or partial calendar date, such as a birthday. The time of
|
7095
|
+
# day and time zone are either specified elsewhere or are insignificant. The
|
7096
|
+
# date is relative to the Gregorian Calendar. This can represent one of the
|
7097
|
+
# following: * A full date, with non-zero year, month, and day values. * A month
|
7098
|
+
# and day, with a zero year (for example, an anniversary). * A year on its own,
|
7099
|
+
# with a zero month and a zero day. * A year and month, with a zero day (for
|
7100
|
+
# example, a credit card expiration date). Related types: * google.type.
|
7101
|
+
# TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
|
7102
|
+
class Date
|
7103
|
+
include Google::Apis::Core::Hashable
|
7104
|
+
|
7105
|
+
# Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to
|
7106
|
+
# specify a year by itself or a year and month where the day isn't significant.
|
7107
|
+
# Corresponds to the JSON property `day`
|
7108
|
+
# @return [Fixnum]
|
7109
|
+
attr_accessor :day
|
7110
|
+
|
7111
|
+
# Month of a year. Must be from 1 to 12, or 0 to specify a year without a month
|
7112
|
+
# and day.
|
7113
|
+
# Corresponds to the JSON property `month`
|
7114
|
+
# @return [Fixnum]
|
7115
|
+
attr_accessor :month
|
7116
|
+
|
7117
|
+
# Year of the date. Must be from 1 to 9999, or 0 to specify a date without a
|
7118
|
+
# year.
|
7119
|
+
# Corresponds to the JSON property `year`
|
7120
|
+
# @return [Fixnum]
|
7121
|
+
attr_accessor :year
|
7122
|
+
|
7123
|
+
def initialize(**args)
|
7124
|
+
update!(**args)
|
7125
|
+
end
|
7126
|
+
|
7127
|
+
# Update properties of this object
|
7128
|
+
def update!(**args)
|
7129
|
+
@day = args[:day] if args.key?(:day)
|
7130
|
+
@month = args[:month] if args.key?(:month)
|
7131
|
+
@year = args[:year] if args.key?(:year)
|
7132
|
+
end
|
7133
|
+
end
|
7134
|
+
|
7094
7135
|
# Deprecation status for a public resource.
|
7095
7136
|
class DeprecationStatus
|
7096
7137
|
include Google::Apis::Core::Hashable
|
@@ -14390,6 +14431,11 @@ module Google
|
|
14390
14431
|
# @return [String]
|
14391
14432
|
attr_accessor :name
|
14392
14433
|
|
14434
|
+
# Additional image params.
|
14435
|
+
# Corresponds to the JSON property `params`
|
14436
|
+
# @return [Google::Apis::ComputeV1::ImageParams]
|
14437
|
+
attr_accessor :params
|
14438
|
+
|
14393
14439
|
# The parameters of the raw disk image.
|
14394
14440
|
# Corresponds to the JSON property `rawDisk`
|
14395
14441
|
# @return [Google::Apis::ComputeV1::Image::RawDisk]
|
@@ -14530,6 +14576,7 @@ module Google
|
|
14530
14576
|
@license_codes = args[:license_codes] if args.key?(:license_codes)
|
14531
14577
|
@licenses = args[:licenses] if args.key?(:licenses)
|
14532
14578
|
@name = args[:name] if args.key?(:name)
|
14579
|
+
@params = args[:params] if args.key?(:params)
|
14533
14580
|
@raw_disk = args[:raw_disk] if args.key?(:raw_disk)
|
14534
14581
|
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
|
14535
14582
|
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
@@ -14726,6 +14773,28 @@ module Google
|
|
14726
14773
|
end
|
14727
14774
|
end
|
14728
14775
|
|
14776
|
+
# Additional image params.
|
14777
|
+
class ImageParams
|
14778
|
+
include Google::Apis::Core::Hashable
|
14779
|
+
|
14780
|
+
# Resource manager tags to be bound to the image. Tag keys and values have the
|
14781
|
+
# same definition as resource manager tags. Keys must be in the format `tagKeys/`
|
14782
|
+
# tag_key_id``, and values are in the format `tagValues/456`. The field is
|
14783
|
+
# ignored (both PUT & PATCH) when empty.
|
14784
|
+
# Corresponds to the JSON property `resourceManagerTags`
|
14785
|
+
# @return [Hash<String,String>]
|
14786
|
+
attr_accessor :resource_manager_tags
|
14787
|
+
|
14788
|
+
def initialize(**args)
|
14789
|
+
update!(**args)
|
14790
|
+
end
|
14791
|
+
|
14792
|
+
# Update properties of this object
|
14793
|
+
def update!(**args)
|
14794
|
+
@resource_manager_tags = args[:resource_manager_tags] if args.key?(:resource_manager_tags)
|
14795
|
+
end
|
14796
|
+
end
|
14797
|
+
|
14729
14798
|
# Initial State for shielded instance, these are public keys which are safe to
|
14730
14799
|
# store in public
|
14731
14800
|
class InitialStateConfig
|
@@ -20527,6 +20596,12 @@ module Google
|
|
20527
20596
|
# @return [String]
|
20528
20597
|
attr_accessor :state
|
20529
20598
|
|
20599
|
+
# Specific subzone in the InterconnectLocation that represents where this
|
20600
|
+
# connection is to be provisioned.
|
20601
|
+
# Corresponds to the JSON property `subzone`
|
20602
|
+
# @return [String]
|
20603
|
+
attr_accessor :subzone
|
20604
|
+
|
20530
20605
|
def initialize(**args)
|
20531
20606
|
update!(**args)
|
20532
20607
|
end
|
@@ -20566,6 +20641,7 @@ module Google
|
|
20566
20641
|
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
20567
20642
|
@self_link = args[:self_link] if args.key?(:self_link)
|
20568
20643
|
@state = args[:state] if args.key?(:state)
|
20644
|
+
@subzone = args[:subzone] if args.key?(:subzone)
|
20569
20645
|
end
|
20570
20646
|
end
|
20571
20647
|
|
@@ -23369,6 +23445,13 @@ module Google
|
|
23369
23445
|
# @return [String]
|
23370
23446
|
attr_accessor :self_link
|
23371
23447
|
|
23448
|
+
# [Output Only] URLs of the other locations that can pair up with this location
|
23449
|
+
# to support Single-Region 99.99% SLA. E.g. iad-zone1-1 and iad-zone2-5467 are
|
23450
|
+
# Single-Region 99.99% peer locations of each other.
|
23451
|
+
# Corresponds to the JSON property `singleRegionProductionCriticalPeerLocations`
|
23452
|
+
# @return [Array<String>]
|
23453
|
+
attr_accessor :single_region_production_critical_peer_locations
|
23454
|
+
|
23372
23455
|
# [Output Only] The status of this InterconnectLocation, which can take one of
|
23373
23456
|
# the following values: - CLOSED: The InterconnectLocation is closed and is
|
23374
23457
|
# unavailable for provisioning new Interconnects. - AVAILABLE: The
|
@@ -23405,6 +23488,7 @@ module Google
|
|
23405
23488
|
@peeringdb_facility_id = args[:peeringdb_facility_id] if args.key?(:peeringdb_facility_id)
|
23406
23489
|
@region_infos = args[:region_infos] if args.key?(:region_infos)
|
23407
23490
|
@self_link = args[:self_link] if args.key?(:self_link)
|
23491
|
+
@single_region_production_critical_peer_locations = args[:single_region_production_critical_peer_locations] if args.key?(:single_region_production_critical_peer_locations)
|
23408
23492
|
@status = args[:status] if args.key?(:status)
|
23409
23493
|
@supports_pzs = args[:supports_pzs] if args.key?(:supports_pzs)
|
23410
23494
|
end
|
@@ -23858,6 +23942,13 @@ module Google
|
|
23858
23942
|
# @return [Fixnum]
|
23859
23943
|
attr_accessor :max_lag_size10_gbps
|
23860
23944
|
|
23945
|
+
# [Output Only] The maximum number of 400 Gbps ports supported in a link
|
23946
|
+
# aggregation group (LAG). When linkType is 400 Gbps, requestedLinkCount cannot
|
23947
|
+
# exceed max_lag_size_400_gbps.
|
23948
|
+
# Corresponds to the JSON property `maxLagSize400Gbps`
|
23949
|
+
# @return [Fixnum]
|
23950
|
+
attr_accessor :max_lag_size400_gbps
|
23951
|
+
|
23861
23952
|
# [Output Only] Name of the resource.
|
23862
23953
|
# Corresponds to the JSON property `name`
|
23863
23954
|
# @return [String]
|
@@ -23914,6 +24005,7 @@ module Google
|
|
23914
24005
|
@lacp = args[:lacp] if args.key?(:lacp)
|
23915
24006
|
@max_lag_size100_gbps = args[:max_lag_size100_gbps] if args.key?(:max_lag_size100_gbps)
|
23916
24007
|
@max_lag_size10_gbps = args[:max_lag_size10_gbps] if args.key?(:max_lag_size10_gbps)
|
24008
|
+
@max_lag_size400_gbps = args[:max_lag_size400_gbps] if args.key?(:max_lag_size400_gbps)
|
23917
24009
|
@name = args[:name] if args.key?(:name)
|
23918
24010
|
@peeringdb_facility_id = args[:peeringdb_facility_id] if args.key?(:peeringdb_facility_id)
|
23919
24011
|
@permitted_connections = args[:permitted_connections] if args.key?(:permitted_connections)
|
@@ -32110,6 +32202,33 @@ module Google
|
|
32110
32202
|
end
|
32111
32203
|
end
|
32112
32204
|
|
32205
|
+
#
|
32206
|
+
class OrganizationSecurityPoliciesListAssociationsResponse
|
32207
|
+
include Google::Apis::Core::Hashable
|
32208
|
+
|
32209
|
+
# A list of associations.
|
32210
|
+
# Corresponds to the JSON property `associations`
|
32211
|
+
# @return [Array<Google::Apis::ComputeV1::SecurityPolicyAssociation>]
|
32212
|
+
attr_accessor :associations
|
32213
|
+
|
32214
|
+
# [Output Only] Type of securityPolicy associations. Always compute#
|
32215
|
+
# organizationSecurityPoliciesListAssociations for lists of securityPolicy
|
32216
|
+
# associations.
|
32217
|
+
# Corresponds to the JSON property `kind`
|
32218
|
+
# @return [String]
|
32219
|
+
attr_accessor :kind
|
32220
|
+
|
32221
|
+
def initialize(**args)
|
32222
|
+
update!(**args)
|
32223
|
+
end
|
32224
|
+
|
32225
|
+
# Update properties of this object
|
32226
|
+
def update!(**args)
|
32227
|
+
@associations = args[:associations] if args.key?(:associations)
|
32228
|
+
@kind = args[:kind] if args.key?(:kind)
|
32229
|
+
end
|
32230
|
+
end
|
32231
|
+
|
32113
32232
|
# Settings controlling the eviction of unhealthy hosts from the load balancing
|
32114
32233
|
# pool for the backend service.
|
32115
32234
|
class OutlierDetection
|
@@ -33344,6 +33463,308 @@ module Google
|
|
33344
33463
|
end
|
33345
33464
|
end
|
33346
33465
|
|
33466
|
+
# Represents a single Google Compute Engine preview feature.
|
33467
|
+
class PreviewFeature
|
33468
|
+
include Google::Apis::Core::Hashable
|
33469
|
+
|
33470
|
+
# Specifies whether the feature is enabled or disabled.
|
33471
|
+
# Corresponds to the JSON property `activationStatus`
|
33472
|
+
# @return [String]
|
33473
|
+
attr_accessor :activation_status
|
33474
|
+
|
33475
|
+
# [Output Only] Creation timestamp in RFC3339 text format.
|
33476
|
+
# Corresponds to the JSON property `creationTimestamp`
|
33477
|
+
# @return [String]
|
33478
|
+
attr_accessor :creation_timestamp
|
33479
|
+
|
33480
|
+
# [Output Only] Description of the feature.
|
33481
|
+
# Corresponds to the JSON property `description`
|
33482
|
+
# @return [String]
|
33483
|
+
attr_accessor :description
|
33484
|
+
|
33485
|
+
# [Output Only] The unique identifier for the resource. This identifier is
|
33486
|
+
# defined by the server.
|
33487
|
+
# Corresponds to the JSON property `id`
|
33488
|
+
# @return [Fixnum]
|
33489
|
+
attr_accessor :id
|
33490
|
+
|
33491
|
+
# [Output only] The type of the feature. Always "compute#previewFeature" for
|
33492
|
+
# preview features.
|
33493
|
+
# Corresponds to the JSON property `kind`
|
33494
|
+
# @return [String]
|
33495
|
+
attr_accessor :kind
|
33496
|
+
|
33497
|
+
# Name of the feature.
|
33498
|
+
# Corresponds to the JSON property `name`
|
33499
|
+
# @return [String]
|
33500
|
+
attr_accessor :name
|
33501
|
+
|
33502
|
+
# Represents the rollout operation
|
33503
|
+
# Corresponds to the JSON property `rolloutOperation`
|
33504
|
+
# @return [Google::Apis::ComputeV1::PreviewFeatureRolloutOperation]
|
33505
|
+
attr_accessor :rollout_operation
|
33506
|
+
|
33507
|
+
# [Output Only] Server-defined URL for the resource.
|
33508
|
+
# Corresponds to the JSON property `selfLink`
|
33509
|
+
# @return [String]
|
33510
|
+
attr_accessor :self_link
|
33511
|
+
|
33512
|
+
# [Output Only] The status of the feature.
|
33513
|
+
# Corresponds to the JSON property `status`
|
33514
|
+
# @return [Google::Apis::ComputeV1::PreviewFeatureStatus]
|
33515
|
+
attr_accessor :status
|
33516
|
+
|
33517
|
+
def initialize(**args)
|
33518
|
+
update!(**args)
|
33519
|
+
end
|
33520
|
+
|
33521
|
+
# Update properties of this object
|
33522
|
+
def update!(**args)
|
33523
|
+
@activation_status = args[:activation_status] if args.key?(:activation_status)
|
33524
|
+
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
33525
|
+
@description = args[:description] if args.key?(:description)
|
33526
|
+
@id = args[:id] if args.key?(:id)
|
33527
|
+
@kind = args[:kind] if args.key?(:kind)
|
33528
|
+
@name = args[:name] if args.key?(:name)
|
33529
|
+
@rollout_operation = args[:rollout_operation] if args.key?(:rollout_operation)
|
33530
|
+
@self_link = args[:self_link] if args.key?(:self_link)
|
33531
|
+
@status = args[:status] if args.key?(:status)
|
33532
|
+
end
|
33533
|
+
end
|
33534
|
+
|
33535
|
+
#
|
33536
|
+
class PreviewFeatureList
|
33537
|
+
include Google::Apis::Core::Hashable
|
33538
|
+
|
33539
|
+
#
|
33540
|
+
# Corresponds to the JSON property `etag`
|
33541
|
+
# @return [String]
|
33542
|
+
attr_accessor :etag
|
33543
|
+
|
33544
|
+
# [Output Only] Unique identifier for the resource; defined by the server.
|
33545
|
+
# Corresponds to the JSON property `id`
|
33546
|
+
# @return [String]
|
33547
|
+
attr_accessor :id
|
33548
|
+
|
33549
|
+
# A list of PreviewFeature resources.
|
33550
|
+
# Corresponds to the JSON property `items`
|
33551
|
+
# @return [Array<Google::Apis::ComputeV1::PreviewFeature>]
|
33552
|
+
attr_accessor :items
|
33553
|
+
|
33554
|
+
# [Output Only] This token allows you to get the next page of results for list
|
33555
|
+
# requests. If the number of results is larger than maxResults, use the
|
33556
|
+
# nextPageToken as a value for the query parameter pageToken in the next list
|
33557
|
+
# request. Subsequent list requests will have their own nextPageToken to
|
33558
|
+
# continue paging through the results.
|
33559
|
+
# Corresponds to the JSON property `nextPageToken`
|
33560
|
+
# @return [String]
|
33561
|
+
attr_accessor :next_page_token
|
33562
|
+
|
33563
|
+
# [Output Only] Server-defined URL for this resource.
|
33564
|
+
# Corresponds to the JSON property `selfLink`
|
33565
|
+
# @return [String]
|
33566
|
+
attr_accessor :self_link
|
33567
|
+
|
33568
|
+
# [Output Only] Unreachable resources. end_interface:
|
33569
|
+
# MixerListResponseWithEtagBuilder
|
33570
|
+
# Corresponds to the JSON property `unreachables`
|
33571
|
+
# @return [Array<String>]
|
33572
|
+
attr_accessor :unreachables
|
33573
|
+
|
33574
|
+
# [Output Only] Informational warning message.
|
33575
|
+
# Corresponds to the JSON property `warning`
|
33576
|
+
# @return [Google::Apis::ComputeV1::PreviewFeatureList::Warning]
|
33577
|
+
attr_accessor :warning
|
33578
|
+
|
33579
|
+
def initialize(**args)
|
33580
|
+
update!(**args)
|
33581
|
+
end
|
33582
|
+
|
33583
|
+
# Update properties of this object
|
33584
|
+
def update!(**args)
|
33585
|
+
@etag = args[:etag] if args.key?(:etag)
|
33586
|
+
@id = args[:id] if args.key?(:id)
|
33587
|
+
@items = args[:items] if args.key?(:items)
|
33588
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
33589
|
+
@self_link = args[:self_link] if args.key?(:self_link)
|
33590
|
+
@unreachables = args[:unreachables] if args.key?(:unreachables)
|
33591
|
+
@warning = args[:warning] if args.key?(:warning)
|
33592
|
+
end
|
33593
|
+
|
33594
|
+
# [Output Only] Informational warning message.
|
33595
|
+
class Warning
|
33596
|
+
include Google::Apis::Core::Hashable
|
33597
|
+
|
33598
|
+
# [Output Only] A warning code, if applicable. For example, Compute Engine
|
33599
|
+
# returns NO_RESULTS_ON_PAGE if there are no results in the response.
|
33600
|
+
# Corresponds to the JSON property `code`
|
33601
|
+
# @return [String]
|
33602
|
+
attr_accessor :code
|
33603
|
+
|
33604
|
+
# [Output Only] Metadata about this warning in key: value format. For example: "
|
33605
|
+
# data": [ ` "key": "scope", "value": "zones/us-east1-d" `
|
33606
|
+
# Corresponds to the JSON property `data`
|
33607
|
+
# @return [Array<Google::Apis::ComputeV1::PreviewFeatureList::Warning::Datum>]
|
33608
|
+
attr_accessor :data
|
33609
|
+
|
33610
|
+
# [Output Only] A human-readable description of the warning code.
|
33611
|
+
# Corresponds to the JSON property `message`
|
33612
|
+
# @return [String]
|
33613
|
+
attr_accessor :message
|
33614
|
+
|
33615
|
+
def initialize(**args)
|
33616
|
+
update!(**args)
|
33617
|
+
end
|
33618
|
+
|
33619
|
+
# Update properties of this object
|
33620
|
+
def update!(**args)
|
33621
|
+
@code = args[:code] if args.key?(:code)
|
33622
|
+
@data = args[:data] if args.key?(:data)
|
33623
|
+
@message = args[:message] if args.key?(:message)
|
33624
|
+
end
|
33625
|
+
|
33626
|
+
#
|
33627
|
+
class Datum
|
33628
|
+
include Google::Apis::Core::Hashable
|
33629
|
+
|
33630
|
+
# [Output Only] A key that provides more detail on the warning being returned.
|
33631
|
+
# For example, for warnings where there are no results in a list request for a
|
33632
|
+
# particular zone, this key might be scope and the key value might be the zone
|
33633
|
+
# name. Other examples might be a key indicating a deprecated resource and a
|
33634
|
+
# suggested replacement, or a warning about invalid network settings (for
|
33635
|
+
# example, if an instance attempts to perform IP forwarding but is not enabled
|
33636
|
+
# for IP forwarding).
|
33637
|
+
# Corresponds to the JSON property `key`
|
33638
|
+
# @return [String]
|
33639
|
+
attr_accessor :key
|
33640
|
+
|
33641
|
+
# [Output Only] A warning data value corresponding to the key.
|
33642
|
+
# Corresponds to the JSON property `value`
|
33643
|
+
# @return [String]
|
33644
|
+
attr_accessor :value
|
33645
|
+
|
33646
|
+
def initialize(**args)
|
33647
|
+
update!(**args)
|
33648
|
+
end
|
33649
|
+
|
33650
|
+
# Update properties of this object
|
33651
|
+
def update!(**args)
|
33652
|
+
@key = args[:key] if args.key?(:key)
|
33653
|
+
@value = args[:value] if args.key?(:value)
|
33654
|
+
end
|
33655
|
+
end
|
33656
|
+
end
|
33657
|
+
end
|
33658
|
+
|
33659
|
+
# Represents the rollout operation
|
33660
|
+
class PreviewFeatureRolloutOperation
|
33661
|
+
include Google::Apis::Core::Hashable
|
33662
|
+
|
33663
|
+
# Represents the input for the rollout operation.
|
33664
|
+
# Corresponds to the JSON property `rolloutInput`
|
33665
|
+
# @return [Google::Apis::ComputeV1::PreviewFeatureRolloutOperationRolloutInput]
|
33666
|
+
attr_accessor :rollout_input
|
33667
|
+
|
33668
|
+
def initialize(**args)
|
33669
|
+
update!(**args)
|
33670
|
+
end
|
33671
|
+
|
33672
|
+
# Update properties of this object
|
33673
|
+
def update!(**args)
|
33674
|
+
@rollout_input = args[:rollout_input] if args.key?(:rollout_input)
|
33675
|
+
end
|
33676
|
+
end
|
33677
|
+
|
33678
|
+
# Represents the input for the rollout operation.
|
33679
|
+
class PreviewFeatureRolloutOperationRolloutInput
|
33680
|
+
include Google::Apis::Core::Hashable
|
33681
|
+
|
33682
|
+
# The name of the rollout plan Ex. organizations//locations/global/rolloutPlans/
|
33683
|
+
# Ex. folders//locations/global/rolloutPlans/ Ex. projects//locations/global/
|
33684
|
+
# rolloutPlans/.
|
33685
|
+
# Corresponds to the JSON property `name`
|
33686
|
+
# @return [String]
|
33687
|
+
attr_accessor :name
|
33688
|
+
|
33689
|
+
# Predefined rollout plan.
|
33690
|
+
# Corresponds to the JSON property `predefinedRolloutPlan`
|
33691
|
+
# @return [String]
|
33692
|
+
attr_accessor :predefined_rollout_plan
|
33693
|
+
|
33694
|
+
def initialize(**args)
|
33695
|
+
update!(**args)
|
33696
|
+
end
|
33697
|
+
|
33698
|
+
# Update properties of this object
|
33699
|
+
def update!(**args)
|
33700
|
+
@name = args[:name] if args.key?(:name)
|
33701
|
+
@predefined_rollout_plan = args[:predefined_rollout_plan] if args.key?(:predefined_rollout_plan)
|
33702
|
+
end
|
33703
|
+
end
|
33704
|
+
|
33705
|
+
# [Output Only] The status of the feature.
|
33706
|
+
class PreviewFeatureStatus
|
33707
|
+
include Google::Apis::Core::Hashable
|
33708
|
+
|
33709
|
+
# [Output Only] The description of the feature.
|
33710
|
+
# Corresponds to the JSON property `description`
|
33711
|
+
# @return [String]
|
33712
|
+
attr_accessor :description
|
33713
|
+
|
33714
|
+
# [Output Only] Link to the public documentation for the feature.
|
33715
|
+
# Corresponds to the JSON property `helpLink`
|
33716
|
+
# @return [String]
|
33717
|
+
attr_accessor :help_link
|
33718
|
+
|
33719
|
+
# [Output Only] The release status of the feature.
|
33720
|
+
# Corresponds to the JSON property `releaseStatus`
|
33721
|
+
# @return [Google::Apis::ComputeV1::PreviewFeatureStatusReleaseStatus]
|
33722
|
+
attr_accessor :release_status
|
33723
|
+
|
33724
|
+
def initialize(**args)
|
33725
|
+
update!(**args)
|
33726
|
+
end
|
33727
|
+
|
33728
|
+
# Update properties of this object
|
33729
|
+
def update!(**args)
|
33730
|
+
@description = args[:description] if args.key?(:description)
|
33731
|
+
@help_link = args[:help_link] if args.key?(:help_link)
|
33732
|
+
@release_status = args[:release_status] if args.key?(:release_status)
|
33733
|
+
end
|
33734
|
+
end
|
33735
|
+
|
33736
|
+
# [Output Only] The release status of the feature.
|
33737
|
+
class PreviewFeatureStatusReleaseStatus
|
33738
|
+
include Google::Apis::Core::Hashable
|
33739
|
+
|
33740
|
+
# [Output Only] The stage of the feature.
|
33741
|
+
# Corresponds to the JSON property `stage`
|
33742
|
+
# @return [String]
|
33743
|
+
attr_accessor :stage
|
33744
|
+
|
33745
|
+
# Represents a whole or partial calendar date, such as a birthday. The time of
|
33746
|
+
# day and time zone are either specified elsewhere or are insignificant. The
|
33747
|
+
# date is relative to the Gregorian Calendar. This can represent one of the
|
33748
|
+
# following: * A full date, with non-zero year, month, and day values. * A month
|
33749
|
+
# and day, with a zero year (for example, an anniversary). * A year on its own,
|
33750
|
+
# with a zero month and a zero day. * A year and month, with a zero day (for
|
33751
|
+
# example, a credit card expiration date). Related types: * google.type.
|
33752
|
+
# TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
|
33753
|
+
# Corresponds to the JSON property `updateDate`
|
33754
|
+
# @return [Google::Apis::ComputeV1::Date]
|
33755
|
+
attr_accessor :update_date
|
33756
|
+
|
33757
|
+
def initialize(**args)
|
33758
|
+
update!(**args)
|
33759
|
+
end
|
33760
|
+
|
33761
|
+
# Update properties of this object
|
33762
|
+
def update!(**args)
|
33763
|
+
@stage = args[:stage] if args.key?(:stage)
|
33764
|
+
@update_date = args[:update_date] if args.key?(:update_date)
|
33765
|
+
end
|
33766
|
+
end
|
33767
|
+
|
33347
33768
|
# Represents a Project resource. A project is used to organize resources in a
|
33348
33769
|
# Google Cloud Platform environment. For more information, read about the
|
33349
33770
|
# Resource Hierarchy.
|
@@ -36374,6 +36795,11 @@ module Google
|
|
36374
36795
|
# @return [String]
|
36375
36796
|
attr_accessor :backend_service
|
36376
36797
|
|
36798
|
+
# The percentage of requests to be mirrored to `backend_service`.
|
36799
|
+
# Corresponds to the JSON property `mirrorPercent`
|
36800
|
+
# @return [Float]
|
36801
|
+
attr_accessor :mirror_percent
|
36802
|
+
|
36377
36803
|
def initialize(**args)
|
36378
36804
|
update!(**args)
|
36379
36805
|
end
|
@@ -36381,6 +36807,7 @@ module Google
|
|
36381
36807
|
# Update properties of this object
|
36382
36808
|
def update!(**args)
|
36383
36809
|
@backend_service = args[:backend_service] if args.key?(:backend_service)
|
36810
|
+
@mirror_percent = args[:mirror_percent] if args.key?(:mirror_percent)
|
36384
36811
|
end
|
36385
36812
|
end
|
36386
36813
|
|
@@ -37551,6 +37978,62 @@ module Google
|
|
37551
37978
|
end
|
37552
37979
|
end
|
37553
37980
|
|
37981
|
+
#
|
37982
|
+
class ReservationSubBlocksReportFaultyRequest
|
37983
|
+
include Google::Apis::Core::Hashable
|
37984
|
+
|
37985
|
+
# The disruption schedule for the subBlock.
|
37986
|
+
# Corresponds to the JSON property `disruptionSchedule`
|
37987
|
+
# @return [String]
|
37988
|
+
attr_accessor :disruption_schedule
|
37989
|
+
|
37990
|
+
# The component that experienced the fault.
|
37991
|
+
# Corresponds to the JSON property `failureComponent`
|
37992
|
+
# @return [String]
|
37993
|
+
attr_accessor :failure_component
|
37994
|
+
|
37995
|
+
# The reasons for the fault experienced with the subBlock.
|
37996
|
+
# Corresponds to the JSON property `faultReasons`
|
37997
|
+
# @return [Array<Google::Apis::ComputeV1::ReservationSubBlocksReportFaultyRequestFaultReason>]
|
37998
|
+
attr_accessor :fault_reasons
|
37999
|
+
|
38000
|
+
def initialize(**args)
|
38001
|
+
update!(**args)
|
38002
|
+
end
|
38003
|
+
|
38004
|
+
# Update properties of this object
|
38005
|
+
def update!(**args)
|
38006
|
+
@disruption_schedule = args[:disruption_schedule] if args.key?(:disruption_schedule)
|
38007
|
+
@failure_component = args[:failure_component] if args.key?(:failure_component)
|
38008
|
+
@fault_reasons = args[:fault_reasons] if args.key?(:fault_reasons)
|
38009
|
+
end
|
38010
|
+
end
|
38011
|
+
|
38012
|
+
# The reason for the fault experienced with the subBlock.
|
38013
|
+
class ReservationSubBlocksReportFaultyRequestFaultReason
|
38014
|
+
include Google::Apis::Core::Hashable
|
38015
|
+
|
38016
|
+
# The behavior of the fault experienced with the subBlock.
|
38017
|
+
# Corresponds to the JSON property `behavior`
|
38018
|
+
# @return [String]
|
38019
|
+
attr_accessor :behavior
|
38020
|
+
|
38021
|
+
# The description of the fault experienced with the subBlock.
|
38022
|
+
# Corresponds to the JSON property `description`
|
38023
|
+
# @return [String]
|
38024
|
+
attr_accessor :description
|
38025
|
+
|
38026
|
+
def initialize(**args)
|
38027
|
+
update!(**args)
|
38028
|
+
end
|
38029
|
+
|
38030
|
+
# Update properties of this object
|
38031
|
+
def update!(**args)
|
38032
|
+
@behavior = args[:behavior] if args.key?(:behavior)
|
38033
|
+
@description = args[:description] if args.key?(:description)
|
38034
|
+
end
|
38035
|
+
end
|
38036
|
+
|
37554
38037
|
#
|
37555
38038
|
class ReservationsBlocksPerformMaintenanceRequest
|
37556
38039
|
include Google::Apis::Core::Hashable
|
@@ -42154,6 +42637,11 @@ module Google
|
|
42154
42637
|
# @return [Google::Apis::ComputeV1::SecurityPolicyAdvancedOptionsConfig]
|
42155
42638
|
attr_accessor :advanced_options_config
|
42156
42639
|
|
42640
|
+
# A list of associations that belong to this policy.
|
42641
|
+
# Corresponds to the JSON property `associations`
|
42642
|
+
# @return [Array<Google::Apis::ComputeV1::SecurityPolicyAssociation>]
|
42643
|
+
attr_accessor :associations
|
42644
|
+
|
42157
42645
|
# [Output Only] Creation timestamp in RFC3339 text format.
|
42158
42646
|
# Corresponds to the JSON property `creationTimestamp`
|
42159
42647
|
# @return [String]
|
@@ -42248,6 +42736,18 @@ module Google
|
|
42248
42736
|
# @return [String]
|
42249
42737
|
attr_accessor :self_link
|
42250
42738
|
|
42739
|
+
# User-provided name of the organization security policy. The name should be
|
42740
|
+
# unique in the organization in which the security policy is created. This
|
42741
|
+
# should only be used when SecurityPolicyType is CLOUD_ARMOR. The name must be 1-
|
42742
|
+
# 63 characters long, and comply with https://www.ietf.org/rfc/rfc1035.txt.
|
42743
|
+
# Specifically, the name must be 1-63 characters long and match the regular
|
42744
|
+
# expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must
|
42745
|
+
# be a lowercase letter, and all following characters must be a dash, lowercase
|
42746
|
+
# letter, or digit, except the last character, which cannot be a dash.
|
42747
|
+
# Corresponds to the JSON property `shortName`
|
42748
|
+
# @return [String]
|
42749
|
+
attr_accessor :short_name
|
42750
|
+
|
42251
42751
|
# The type indicates the intended use of the security policy. - CLOUD_ARMOR:
|
42252
42752
|
# Cloud Armor backend security policies can be configured to filter incoming
|
42253
42753
|
# HTTP requests targeting backend services. They filter requests before they hit
|
@@ -42285,6 +42785,7 @@ module Google
|
|
42285
42785
|
def update!(**args)
|
42286
42786
|
@adaptive_protection_config = args[:adaptive_protection_config] if args.key?(:adaptive_protection_config)
|
42287
42787
|
@advanced_options_config = args[:advanced_options_config] if args.key?(:advanced_options_config)
|
42788
|
+
@associations = args[:associations] if args.key?(:associations)
|
42288
42789
|
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
42289
42790
|
@ddos_protection_config = args[:ddos_protection_config] if args.key?(:ddos_protection_config)
|
42290
42791
|
@description = args[:description] if args.key?(:description)
|
@@ -42298,6 +42799,7 @@ module Google
|
|
42298
42799
|
@region = args[:region] if args.key?(:region)
|
42299
42800
|
@rules = args[:rules] if args.key?(:rules)
|
42300
42801
|
@self_link = args[:self_link] if args.key?(:self_link)
|
42802
|
+
@short_name = args[:short_name] if args.key?(:short_name)
|
42301
42803
|
@type = args[:type] if args.key?(:type)
|
42302
42804
|
@user_defined_fields = args[:user_defined_fields] if args.key?(:user_defined_fields)
|
42303
42805
|
end
|
@@ -42526,6 +43028,61 @@ module Google
|
|
42526
43028
|
end
|
42527
43029
|
end
|
42528
43030
|
|
43031
|
+
#
|
43032
|
+
class SecurityPolicyAssociation
|
43033
|
+
include Google::Apis::Core::Hashable
|
43034
|
+
|
43035
|
+
# The resource that the security policy is attached to.
|
43036
|
+
# Corresponds to the JSON property `attachmentId`
|
43037
|
+
# @return [String]
|
43038
|
+
attr_accessor :attachment_id
|
43039
|
+
|
43040
|
+
# [Output Only] The display name of the security policy of the association.
|
43041
|
+
# Corresponds to the JSON property `displayName`
|
43042
|
+
# @return [String]
|
43043
|
+
attr_accessor :display_name
|
43044
|
+
|
43045
|
+
# A list of folders to exclude from the security policy.
|
43046
|
+
# Corresponds to the JSON property `excludedFolders`
|
43047
|
+
# @return [Array<String>]
|
43048
|
+
attr_accessor :excluded_folders
|
43049
|
+
|
43050
|
+
# A list of projects to exclude from the security policy.
|
43051
|
+
# Corresponds to the JSON property `excludedProjects`
|
43052
|
+
# @return [Array<String>]
|
43053
|
+
attr_accessor :excluded_projects
|
43054
|
+
|
43055
|
+
# The name for an association.
|
43056
|
+
# Corresponds to the JSON property `name`
|
43057
|
+
# @return [String]
|
43058
|
+
attr_accessor :name
|
43059
|
+
|
43060
|
+
# [Output Only] The security policy ID of the association.
|
43061
|
+
# Corresponds to the JSON property `securityPolicyId`
|
43062
|
+
# @return [String]
|
43063
|
+
attr_accessor :security_policy_id
|
43064
|
+
|
43065
|
+
# [Output Only] The short name of the security policy of the association.
|
43066
|
+
# Corresponds to the JSON property `shortName`
|
43067
|
+
# @return [String]
|
43068
|
+
attr_accessor :short_name
|
43069
|
+
|
43070
|
+
def initialize(**args)
|
43071
|
+
update!(**args)
|
43072
|
+
end
|
43073
|
+
|
43074
|
+
# Update properties of this object
|
43075
|
+
def update!(**args)
|
43076
|
+
@attachment_id = args[:attachment_id] if args.key?(:attachment_id)
|
43077
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
43078
|
+
@excluded_folders = args[:excluded_folders] if args.key?(:excluded_folders)
|
43079
|
+
@excluded_projects = args[:excluded_projects] if args.key?(:excluded_projects)
|
43080
|
+
@name = args[:name] if args.key?(:name)
|
43081
|
+
@security_policy_id = args[:security_policy_id] if args.key?(:security_policy_id)
|
43082
|
+
@short_name = args[:short_name] if args.key?(:short_name)
|
43083
|
+
end
|
43084
|
+
end
|
43085
|
+
|
42529
43086
|
#
|
42530
43087
|
class SecurityPolicyDdosProtectionConfig
|
42531
43088
|
include Google::Apis::Core::Hashable
|
@@ -44452,7 +45009,7 @@ module Google
|
|
44452
45009
|
|
44453
45010
|
# Represents a Persistent Disk Snapshot resource. You can use snapshots to back
|
44454
45011
|
# up data on a regular interval. For more information, read Creating persistent
|
44455
|
-
# disk snapshots.
|
45012
|
+
# disk snapshots.
|
44456
45013
|
class Snapshot
|
44457
45014
|
include Google::Apis::Core::Hashable
|
44458
45015
|
|
@@ -44585,6 +45142,11 @@ module Google
|
|
44585
45142
|
# @return [String]
|
44586
45143
|
attr_accessor :name
|
44587
45144
|
|
45145
|
+
# Additional snapshot params.
|
45146
|
+
# Corresponds to the JSON property `params`
|
45147
|
+
# @return [Google::Apis::ComputeV1::SnapshotParams]
|
45148
|
+
attr_accessor :params
|
45149
|
+
|
44588
45150
|
# Output only. Reserved for future use.
|
44589
45151
|
# Corresponds to the JSON property `satisfiesPzi`
|
44590
45152
|
# @return [Boolean]
|
@@ -44726,6 +45288,7 @@ module Google
|
|
44726
45288
|
@licenses = args[:licenses] if args.key?(:licenses)
|
44727
45289
|
@location_hint = args[:location_hint] if args.key?(:location_hint)
|
44728
45290
|
@name = args[:name] if args.key?(:name)
|
45291
|
+
@params = args[:params] if args.key?(:params)
|
44729
45292
|
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
|
44730
45293
|
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
44731
45294
|
@self_link = args[:self_link] if args.key?(:self_link)
|
@@ -44864,6 +45427,28 @@ module Google
|
|
44864
45427
|
end
|
44865
45428
|
end
|
44866
45429
|
|
45430
|
+
# Additional snapshot params.
|
45431
|
+
class SnapshotParams
|
45432
|
+
include Google::Apis::Core::Hashable
|
45433
|
+
|
45434
|
+
# Resource manager tags to be bound to the snapshot. Tag keys and values have
|
45435
|
+
# the same definition as resource manager tags. Keys must be in the format `
|
45436
|
+
# tagKeys/`tag_key_id``, and values are in the format `tagValues/456`. The field
|
45437
|
+
# is ignored (both PUT & PATCH) when empty.
|
45438
|
+
# Corresponds to the JSON property `resourceManagerTags`
|
45439
|
+
# @return [Hash<String,String>]
|
45440
|
+
attr_accessor :resource_manager_tags
|
45441
|
+
|
45442
|
+
def initialize(**args)
|
45443
|
+
update!(**args)
|
45444
|
+
end
|
45445
|
+
|
45446
|
+
# Update properties of this object
|
45447
|
+
def update!(**args)
|
45448
|
+
@resource_manager_tags = args[:resource_manager_tags] if args.key?(:resource_manager_tags)
|
45449
|
+
end
|
45450
|
+
end
|
45451
|
+
|
44867
45452
|
#
|
44868
45453
|
class SnapshotSettings
|
44869
45454
|
include Google::Apis::Core::Hashable
|
@@ -47780,6 +48365,12 @@ module Google
|
|
47780
48365
|
# @return [Array<String>]
|
47781
48366
|
attr_accessor :system_reserved_internal_ipv6_ranges
|
47782
48367
|
|
48368
|
+
# The current IP utilization of all subnetwork ranges. Contains the total number
|
48369
|
+
# of allocated and free IPs in each range.
|
48370
|
+
# Corresponds to the JSON property `utilizationDetails`
|
48371
|
+
# @return [Google::Apis::ComputeV1::SubnetworkUtilizationDetails]
|
48372
|
+
attr_accessor :utilization_details
|
48373
|
+
|
47783
48374
|
def initialize(**args)
|
47784
48375
|
update!(**args)
|
47785
48376
|
end
|
@@ -47816,6 +48407,7 @@ module Google
|
|
47816
48407
|
@state = args[:state] if args.key?(:state)
|
47817
48408
|
@system_reserved_external_ipv6_ranges = args[:system_reserved_external_ipv6_ranges] if args.key?(:system_reserved_external_ipv6_ranges)
|
47818
48409
|
@system_reserved_internal_ipv6_ranges = args[:system_reserved_internal_ipv6_ranges] if args.key?(:system_reserved_internal_ipv6_ranges)
|
48410
|
+
@utilization_details = args[:utilization_details] if args.key?(:utilization_details)
|
47819
48411
|
end
|
47820
48412
|
end
|
47821
48413
|
|
@@ -48190,6 +48782,101 @@ module Google
|
|
48190
48782
|
end
|
48191
48783
|
end
|
48192
48784
|
|
48785
|
+
# The current IP utilization of all subnetwork ranges. Contains the total number
|
48786
|
+
# of allocated and free IPs in each range.
|
48787
|
+
class SubnetworkUtilizationDetails
|
48788
|
+
include Google::Apis::Core::Hashable
|
48789
|
+
|
48790
|
+
# The IPV6 utilization of a single IP range.
|
48791
|
+
# Corresponds to the JSON property `externalIpv6InstanceUtilization`
|
48792
|
+
# @return [Google::Apis::ComputeV1::SubnetworkUtilizationDetailsIpv6Utilization]
|
48793
|
+
attr_accessor :external_ipv6_instance_utilization
|
48794
|
+
|
48795
|
+
# The IPV6 utilization of a single IP range.
|
48796
|
+
# Corresponds to the JSON property `externalIpv6LbUtilization`
|
48797
|
+
# @return [Google::Apis::ComputeV1::SubnetworkUtilizationDetailsIpv6Utilization]
|
48798
|
+
attr_accessor :external_ipv6_lb_utilization
|
48799
|
+
|
48800
|
+
# The IPV6 utilization of a single IP range.
|
48801
|
+
# Corresponds to the JSON property `internalIpv6Utilization`
|
48802
|
+
# @return [Google::Apis::ComputeV1::SubnetworkUtilizationDetailsIpv6Utilization]
|
48803
|
+
attr_accessor :internal_ipv6_utilization
|
48804
|
+
|
48805
|
+
# Utilizations of all IPV4 IP ranges. For primary ranges, the range name will be
|
48806
|
+
# empty.
|
48807
|
+
# Corresponds to the JSON property `ipv4Utilizations`
|
48808
|
+
# @return [Array<Google::Apis::ComputeV1::SubnetworkUtilizationDetailsIpv4Utilization>]
|
48809
|
+
attr_accessor :ipv4_utilizations
|
48810
|
+
|
48811
|
+
def initialize(**args)
|
48812
|
+
update!(**args)
|
48813
|
+
end
|
48814
|
+
|
48815
|
+
# Update properties of this object
|
48816
|
+
def update!(**args)
|
48817
|
+
@external_ipv6_instance_utilization = args[:external_ipv6_instance_utilization] if args.key?(:external_ipv6_instance_utilization)
|
48818
|
+
@external_ipv6_lb_utilization = args[:external_ipv6_lb_utilization] if args.key?(:external_ipv6_lb_utilization)
|
48819
|
+
@internal_ipv6_utilization = args[:internal_ipv6_utilization] if args.key?(:internal_ipv6_utilization)
|
48820
|
+
@ipv4_utilizations = args[:ipv4_utilizations] if args.key?(:ipv4_utilizations)
|
48821
|
+
end
|
48822
|
+
end
|
48823
|
+
|
48824
|
+
# The IPV4 utilization of a single IP range.
|
48825
|
+
class SubnetworkUtilizationDetailsIpv4Utilization
|
48826
|
+
include Google::Apis::Core::Hashable
|
48827
|
+
|
48828
|
+
# Will be set for secondary range. Empty for primary IPv4 range.
|
48829
|
+
# Corresponds to the JSON property `rangeName`
|
48830
|
+
# @return [String]
|
48831
|
+
attr_accessor :range_name
|
48832
|
+
|
48833
|
+
#
|
48834
|
+
# Corresponds to the JSON property `totalAllocatedIp`
|
48835
|
+
# @return [Fixnum]
|
48836
|
+
attr_accessor :total_allocated_ip
|
48837
|
+
|
48838
|
+
#
|
48839
|
+
# Corresponds to the JSON property `totalFreeIp`
|
48840
|
+
# @return [Fixnum]
|
48841
|
+
attr_accessor :total_free_ip
|
48842
|
+
|
48843
|
+
def initialize(**args)
|
48844
|
+
update!(**args)
|
48845
|
+
end
|
48846
|
+
|
48847
|
+
# Update properties of this object
|
48848
|
+
def update!(**args)
|
48849
|
+
@range_name = args[:range_name] if args.key?(:range_name)
|
48850
|
+
@total_allocated_ip = args[:total_allocated_ip] if args.key?(:total_allocated_ip)
|
48851
|
+
@total_free_ip = args[:total_free_ip] if args.key?(:total_free_ip)
|
48852
|
+
end
|
48853
|
+
end
|
48854
|
+
|
48855
|
+
# The IPV6 utilization of a single IP range.
|
48856
|
+
class SubnetworkUtilizationDetailsIpv6Utilization
|
48857
|
+
include Google::Apis::Core::Hashable
|
48858
|
+
|
48859
|
+
#
|
48860
|
+
# Corresponds to the JSON property `totalAllocatedIp`
|
48861
|
+
# @return [Google::Apis::ComputeV1::Uint128]
|
48862
|
+
attr_accessor :total_allocated_ip
|
48863
|
+
|
48864
|
+
#
|
48865
|
+
# Corresponds to the JSON property `totalFreeIp`
|
48866
|
+
# @return [Google::Apis::ComputeV1::Uint128]
|
48867
|
+
attr_accessor :total_free_ip
|
48868
|
+
|
48869
|
+
def initialize(**args)
|
48870
|
+
update!(**args)
|
48871
|
+
end
|
48872
|
+
|
48873
|
+
# Update properties of this object
|
48874
|
+
def update!(**args)
|
48875
|
+
@total_allocated_ip = args[:total_allocated_ip] if args.key?(:total_allocated_ip)
|
48876
|
+
@total_free_ip = args[:total_free_ip] if args.key?(:total_free_ip)
|
48877
|
+
end
|
48878
|
+
end
|
48879
|
+
|
48193
48880
|
#
|
48194
48881
|
class SubnetworksExpandIpCidrRangeRequest
|
48195
48882
|
include Google::Apis::Core::Hashable
|