google-apis-compute_v1 0.131.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 +4 -0
- data/lib/google/apis/compute_v1/classes.rb +564 -1
- data/lib/google/apis/compute_v1/gem_version.rb +2 -2
- data/lib/google/apis/compute_v1/representations.rb +246 -0
- data/lib/google/apis/compute_v1/service.rb +1178 -87
- 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
|
|
@@ -32126,6 +32202,33 @@ module Google
|
|
32126
32202
|
end
|
32127
32203
|
end
|
32128
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
|
+
|
32129
32232
|
# Settings controlling the eviction of unhealthy hosts from the load balancing
|
32130
32233
|
# pool for the backend service.
|
32131
32234
|
class OutlierDetection
|
@@ -33360,6 +33463,308 @@ module Google
|
|
33360
33463
|
end
|
33361
33464
|
end
|
33362
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
|
+
|
33363
33768
|
# Represents a Project resource. A project is used to organize resources in a
|
33364
33769
|
# Google Cloud Platform environment. For more information, read about the
|
33365
33770
|
# Resource Hierarchy.
|
@@ -37573,6 +37978,62 @@ module Google
|
|
37573
37978
|
end
|
37574
37979
|
end
|
37575
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
|
+
|
37576
38037
|
#
|
37577
38038
|
class ReservationsBlocksPerformMaintenanceRequest
|
37578
38039
|
include Google::Apis::Core::Hashable
|
@@ -42176,6 +42637,11 @@ module Google
|
|
42176
42637
|
# @return [Google::Apis::ComputeV1::SecurityPolicyAdvancedOptionsConfig]
|
42177
42638
|
attr_accessor :advanced_options_config
|
42178
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
|
+
|
42179
42645
|
# [Output Only] Creation timestamp in RFC3339 text format.
|
42180
42646
|
# Corresponds to the JSON property `creationTimestamp`
|
42181
42647
|
# @return [String]
|
@@ -42270,6 +42736,18 @@ module Google
|
|
42270
42736
|
# @return [String]
|
42271
42737
|
attr_accessor :self_link
|
42272
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
|
+
|
42273
42751
|
# The type indicates the intended use of the security policy. - CLOUD_ARMOR:
|
42274
42752
|
# Cloud Armor backend security policies can be configured to filter incoming
|
42275
42753
|
# HTTP requests targeting backend services. They filter requests before they hit
|
@@ -42307,6 +42785,7 @@ module Google
|
|
42307
42785
|
def update!(**args)
|
42308
42786
|
@adaptive_protection_config = args[:adaptive_protection_config] if args.key?(:adaptive_protection_config)
|
42309
42787
|
@advanced_options_config = args[:advanced_options_config] if args.key?(:advanced_options_config)
|
42788
|
+
@associations = args[:associations] if args.key?(:associations)
|
42310
42789
|
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
42311
42790
|
@ddos_protection_config = args[:ddos_protection_config] if args.key?(:ddos_protection_config)
|
42312
42791
|
@description = args[:description] if args.key?(:description)
|
@@ -42320,6 +42799,7 @@ module Google
|
|
42320
42799
|
@region = args[:region] if args.key?(:region)
|
42321
42800
|
@rules = args[:rules] if args.key?(:rules)
|
42322
42801
|
@self_link = args[:self_link] if args.key?(:self_link)
|
42802
|
+
@short_name = args[:short_name] if args.key?(:short_name)
|
42323
42803
|
@type = args[:type] if args.key?(:type)
|
42324
42804
|
@user_defined_fields = args[:user_defined_fields] if args.key?(:user_defined_fields)
|
42325
42805
|
end
|
@@ -42548,6 +43028,61 @@ module Google
|
|
42548
43028
|
end
|
42549
43029
|
end
|
42550
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
|
+
|
42551
43086
|
#
|
42552
43087
|
class SecurityPolicyDdosProtectionConfig
|
42553
43088
|
include Google::Apis::Core::Hashable
|
@@ -44474,7 +45009,7 @@ module Google
|
|
44474
45009
|
|
44475
45010
|
# Represents a Persistent Disk Snapshot resource. You can use snapshots to back
|
44476
45011
|
# up data on a regular interval. For more information, read Creating persistent
|
44477
|
-
# disk snapshots.
|
45012
|
+
# disk snapshots.
|
44478
45013
|
class Snapshot
|
44479
45014
|
include Google::Apis::Core::Hashable
|
44480
45015
|
|
@@ -44607,6 +45142,11 @@ module Google
|
|
44607
45142
|
# @return [String]
|
44608
45143
|
attr_accessor :name
|
44609
45144
|
|
45145
|
+
# Additional snapshot params.
|
45146
|
+
# Corresponds to the JSON property `params`
|
45147
|
+
# @return [Google::Apis::ComputeV1::SnapshotParams]
|
45148
|
+
attr_accessor :params
|
45149
|
+
|
44610
45150
|
# Output only. Reserved for future use.
|
44611
45151
|
# Corresponds to the JSON property `satisfiesPzi`
|
44612
45152
|
# @return [Boolean]
|
@@ -44748,6 +45288,7 @@ module Google
|
|
44748
45288
|
@licenses = args[:licenses] if args.key?(:licenses)
|
44749
45289
|
@location_hint = args[:location_hint] if args.key?(:location_hint)
|
44750
45290
|
@name = args[:name] if args.key?(:name)
|
45291
|
+
@params = args[:params] if args.key?(:params)
|
44751
45292
|
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
|
44752
45293
|
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
44753
45294
|
@self_link = args[:self_link] if args.key?(:self_link)
|
@@ -44886,6 +45427,28 @@ module Google
|
|
44886
45427
|
end
|
44887
45428
|
end
|
44888
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
|
+
|
44889
45452
|
#
|
44890
45453
|
class SnapshotSettings
|
44891
45454
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ComputeV1
|
18
18
|
# Version of the google-apis-compute_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.132.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250916"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|