google-apis-compute_alpha 0.2.0 → 0.3.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 97128747997c9a29ab7aeabea08c565407a5cca6333a3b039067684230e32185
|
4
|
+
data.tar.gz: b0c7f2a430bf0cf2527dd2403361b765d71b1800e55da5a7e4617b3f3e9e1d77
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1ee0888344aa2949363a1f83e8311492e43221ffb9ec5d46a76f0149186c4842fd5d2438551f3225b0d9d888edad2957ecb7831d65b8bc3c1262fa9024dc9632
|
7
|
+
data.tar.gz: 6ed2fa8dd4310f4244a10fecbc58f85cdff68e2f7a451fd020e6b884c1164e1f0558d20d9a209c671cbbbc24703108557be9180f0ed4e9cad47d8a8b5a63046c
|
data/CHANGELOG.md
CHANGED
@@ -690,9 +690,9 @@ module Google
|
|
690
690
|
# @return [String]
|
691
691
|
attr_accessor :purpose
|
692
692
|
|
693
|
-
# [Output Only] The URL of the region where
|
694
|
-
#
|
695
|
-
#
|
693
|
+
# [Output Only] The URL of the region where a regional address resides. For
|
694
|
+
# regional addresses, you must specify the region as a path parameter in the
|
695
|
+
# HTTP request URL. This field is not applicable to global addresses.
|
696
696
|
# Corresponds to the JSON property `region`
|
697
697
|
# @return [String]
|
698
698
|
attr_accessor :region
|
@@ -3532,8 +3532,8 @@ module Google
|
|
3532
3532
|
|
3533
3533
|
# Deprecated in favor of portName. The TCP port to connect on the backend. The
|
3534
3534
|
# default value is 80.
|
3535
|
-
#
|
3536
|
-
#
|
3535
|
+
# Backend services for Internal TCP/UDP Load Balancing and Network Load
|
3536
|
+
# Balancing require you omit port.
|
3537
3537
|
# Corresponds to the JSON property `port`
|
3538
3538
|
# @return [Fixnum]
|
3539
3539
|
attr_accessor :port
|
@@ -6019,6 +6019,11 @@ module Google
|
|
6019
6019
|
# @return [String]
|
6020
6020
|
attr_accessor :state
|
6021
6021
|
|
6022
|
+
# A rollout policy configuration.
|
6023
|
+
# Corresponds to the JSON property `stateOverride`
|
6024
|
+
# @return [Google::Apis::ComputeAlpha::RolloutPolicy]
|
6025
|
+
attr_accessor :state_override
|
6026
|
+
|
6022
6027
|
def initialize(**args)
|
6023
6028
|
update!(**args)
|
6024
6029
|
end
|
@@ -6030,6 +6035,7 @@ module Google
|
|
6030
6035
|
@obsolete = args[:obsolete] if args.key?(:obsolete)
|
6031
6036
|
@replacement = args[:replacement] if args.key?(:replacement)
|
6032
6037
|
@state = args[:state] if args.key?(:state)
|
6038
|
+
@state_override = args[:state_override] if args.key?(:state_override)
|
6033
6039
|
end
|
6034
6040
|
end
|
6035
6041
|
|
@@ -8685,8 +8691,7 @@ module Google
|
|
8685
8691
|
# @return [String]
|
8686
8692
|
attr_accessor :action
|
8687
8693
|
|
8688
|
-
# An optional description
|
8689
|
-
# create the resource.
|
8694
|
+
# An optional description for this resource.
|
8690
8695
|
# Corresponds to the JSON property `description`
|
8691
8696
|
# @return [String]
|
8692
8697
|
attr_accessor :description
|
@@ -8756,6 +8761,18 @@ module Google
|
|
8756
8761
|
# @return [Array<String>]
|
8757
8762
|
attr_accessor :target_secure_labels
|
8758
8763
|
|
8764
|
+
# A list of secure tags that controls which instances the firewall rule applies
|
8765
|
+
# to. If targetSecureTag are specified, then the firewall rule applies only to
|
8766
|
+
# instances in the VPC network that have one of those EFFECTIVE secure tags, if
|
8767
|
+
# all the target_secure_tag are in INEFFECTIVE state, then this rule will be
|
8768
|
+
# ignored. targetSecureTag may not be set at the same time as
|
8769
|
+
# targetServiceAccounts. If neither targetServiceAccounts nor targetSecureTag
|
8770
|
+
# are specified, the firewall rule applies to all instances on the specified
|
8771
|
+
# network. Maximum number of target label tags allowed is 256.
|
8772
|
+
# Corresponds to the JSON property `targetSecureTags`
|
8773
|
+
# @return [Array<Google::Apis::ComputeAlpha::FirewallPolicyRuleSecureTag>]
|
8774
|
+
attr_accessor :target_secure_tags
|
8775
|
+
|
8759
8776
|
# A list of service accounts indicating the sets of instances that are applied
|
8760
8777
|
# with this rule.
|
8761
8778
|
# Corresponds to the JSON property `targetServiceAccounts`
|
@@ -8779,6 +8796,7 @@ module Google
|
|
8779
8796
|
@rule_tuple_count = args[:rule_tuple_count] if args.key?(:rule_tuple_count)
|
8780
8797
|
@target_resources = args[:target_resources] if args.key?(:target_resources)
|
8781
8798
|
@target_secure_labels = args[:target_secure_labels] if args.key?(:target_secure_labels)
|
8799
|
+
@target_secure_tags = args[:target_secure_tags] if args.key?(:target_secure_tags)
|
8782
8800
|
@target_service_accounts = args[:target_service_accounts] if args.key?(:target_service_accounts)
|
8783
8801
|
end
|
8784
8802
|
end
|
@@ -8810,6 +8828,14 @@ module Google
|
|
8810
8828
|
# @return [Array<String>]
|
8811
8829
|
attr_accessor :src_secure_labels
|
8812
8830
|
|
8831
|
+
# List of secure tag values, which should be matched at the source of the
|
8832
|
+
# traffic. For INGRESS rule, if all the srcSecureTag are INEFFECTIVE, and there
|
8833
|
+
# is no srcIpRange, this rule will be ignored. Maximum number of source tag
|
8834
|
+
# values allowed is 256.
|
8835
|
+
# Corresponds to the JSON property `srcSecureTags`
|
8836
|
+
# @return [Array<Google::Apis::ComputeAlpha::FirewallPolicyRuleSecureTag>]
|
8837
|
+
attr_accessor :src_secure_tags
|
8838
|
+
|
8813
8839
|
def initialize(**args)
|
8814
8840
|
update!(**args)
|
8815
8841
|
end
|
@@ -8820,6 +8846,7 @@ module Google
|
|
8820
8846
|
@layer4_configs = args[:layer4_configs] if args.key?(:layer4_configs)
|
8821
8847
|
@src_ip_ranges = args[:src_ip_ranges] if args.key?(:src_ip_ranges)
|
8822
8848
|
@src_secure_labels = args[:src_secure_labels] if args.key?(:src_secure_labels)
|
8849
|
+
@src_secure_tags = args[:src_secure_tags] if args.key?(:src_secure_tags)
|
8823
8850
|
end
|
8824
8851
|
end
|
8825
8852
|
|
@@ -8854,6 +8881,32 @@ module Google
|
|
8854
8881
|
end
|
8855
8882
|
end
|
8856
8883
|
|
8884
|
+
#
|
8885
|
+
class FirewallPolicyRuleSecureTag
|
8886
|
+
include Google::Apis::Core::Hashable
|
8887
|
+
|
8888
|
+
# Name of the secure tag, created with TagManager's TagValue API.
|
8889
|
+
# Corresponds to the JSON property `name`
|
8890
|
+
# @return [String]
|
8891
|
+
attr_accessor :name
|
8892
|
+
|
8893
|
+
# [Output Only] State of the secure tag, either `EFFECTIVE` or `INEFFECTIVE`. A
|
8894
|
+
# secure tag is `INEFFECTIVE` when it is deleted or its network is deleted.
|
8895
|
+
# Corresponds to the JSON property `state`
|
8896
|
+
# @return [String]
|
8897
|
+
attr_accessor :state
|
8898
|
+
|
8899
|
+
def initialize(**args)
|
8900
|
+
update!(**args)
|
8901
|
+
end
|
8902
|
+
|
8903
|
+
# Update properties of this object
|
8904
|
+
def update!(**args)
|
8905
|
+
@name = args[:name] if args.key?(:name)
|
8906
|
+
@state = args[:state] if args.key?(:state)
|
8907
|
+
end
|
8908
|
+
end
|
8909
|
+
|
8857
8910
|
# Encapsulates numeric value that can be either absolute or relative.
|
8858
8911
|
class FixedOrPercent
|
8859
8912
|
include Google::Apis::Core::Hashable
|
@@ -9149,6 +9202,11 @@ module Google
|
|
9149
9202
|
# @return [Array<String>]
|
9150
9203
|
attr_accessor :ports
|
9151
9204
|
|
9205
|
+
# [Output Only] The PSC connection id of the PSC Forwarding Rule.
|
9206
|
+
# Corresponds to the JSON property `pscConnectionId`
|
9207
|
+
# @return [Fixnum]
|
9208
|
+
attr_accessor :psc_connection_id
|
9209
|
+
|
9152
9210
|
# [Output Only] URL of the region where the regional forwarding rule resides.
|
9153
9211
|
# This field is not applicable to global forwarding rules. You must specify this
|
9154
9212
|
# field as part of the HTTP request URL. It is not settable as a field in the
|
@@ -9241,6 +9299,7 @@ module Google
|
|
9241
9299
|
@network_tier = args[:network_tier] if args.key?(:network_tier)
|
9242
9300
|
@port_range = args[:port_range] if args.key?(:port_range)
|
9243
9301
|
@ports = args[:ports] if args.key?(:ports)
|
9302
|
+
@psc_connection_id = args[:psc_connection_id] if args.key?(:psc_connection_id)
|
9244
9303
|
@region = args[:region] if args.key?(:region)
|
9245
9304
|
@self_link = args[:self_link] if args.key?(:self_link)
|
9246
9305
|
@self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
|
@@ -9528,6 +9587,14 @@ module Google
|
|
9528
9587
|
# @return [String]
|
9529
9588
|
attr_accessor :service
|
9530
9589
|
|
9590
|
+
# [Optional] Service Directory region to register this global forwarding rule
|
9591
|
+
# under. Default to "us-central1". Only used for PSC for Google APIs. All PSC
|
9592
|
+
# for Google APIs Forwarding Rules on the same network should use the same
|
9593
|
+
# Service Directory region.
|
9594
|
+
# Corresponds to the JSON property `serviceDirectoryRegion`
|
9595
|
+
# @return [String]
|
9596
|
+
attr_accessor :service_directory_region
|
9597
|
+
|
9531
9598
|
def initialize(**args)
|
9532
9599
|
update!(**args)
|
9533
9600
|
end
|
@@ -9536,6 +9603,7 @@ module Google
|
|
9536
9603
|
def update!(**args)
|
9537
9604
|
@namespace = args[:namespace] if args.key?(:namespace)
|
9538
9605
|
@service = args[:service] if args.key?(:service)
|
9606
|
+
@service_directory_region = args[:service_directory_region] if args.key?(:service_directory_region)
|
9539
9607
|
end
|
9540
9608
|
end
|
9541
9609
|
|
@@ -11329,7 +11397,9 @@ module Google
|
|
11329
11397
|
# @return [String]
|
11330
11398
|
attr_accessor :instance
|
11331
11399
|
|
11332
|
-
#
|
11400
|
+
# For target pool based Network Load Balancing, it indicates the forwarding rule'
|
11401
|
+
# s IP address assigned to this instance. For other types of load balancing, the
|
11402
|
+
# field indicates VM internal ip.
|
11333
11403
|
# Corresponds to the JSON property `ipAddress`
|
11334
11404
|
# @return [String]
|
11335
11405
|
attr_accessor :ip_address
|
@@ -12807,6 +12877,11 @@ module Google
|
|
12807
12877
|
# @return [Google::Apis::ComputeAlpha::Image::RawDisk]
|
12808
12878
|
attr_accessor :raw_disk
|
12809
12879
|
|
12880
|
+
# A rollout policy configuration.
|
12881
|
+
# Corresponds to the JSON property `rolloutOverride`
|
12882
|
+
# @return [Google::Apis::ComputeAlpha::RolloutPolicy]
|
12883
|
+
attr_accessor :rollout_override
|
12884
|
+
|
12810
12885
|
# [Output Only] Reserved for future use.
|
12811
12886
|
# Corresponds to the JSON property `satisfiesPzs`
|
12812
12887
|
# @return [Boolean]
|
@@ -12944,6 +13019,7 @@ module Google
|
|
12944
13019
|
@licenses = args[:licenses] if args.key?(:licenses)
|
12945
13020
|
@name = args[:name] if args.key?(:name)
|
12946
13021
|
@raw_disk = args[:raw_disk] if args.key?(:raw_disk)
|
13022
|
+
@rollout_override = args[:rollout_override] if args.key?(:rollout_override)
|
12947
13023
|
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
12948
13024
|
@self_link = args[:self_link] if args.key?(:self_link)
|
12949
13025
|
@self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
|
@@ -12998,6 +13074,27 @@ module Google
|
|
12998
13074
|
end
|
12999
13075
|
end
|
13000
13076
|
|
13077
|
+
#
|
13078
|
+
class ImageFamilyView
|
13079
|
+
include Google::Apis::Core::Hashable
|
13080
|
+
|
13081
|
+
# Represents an Image resource.
|
13082
|
+
# You can use images to create boot disks for your VM instances. For more
|
13083
|
+
# information, read Images. (== resource_for `$api_version`.images ==)
|
13084
|
+
# Corresponds to the JSON property `image`
|
13085
|
+
# @return [Google::Apis::ComputeAlpha::Image]
|
13086
|
+
attr_accessor :image
|
13087
|
+
|
13088
|
+
def initialize(**args)
|
13089
|
+
update!(**args)
|
13090
|
+
end
|
13091
|
+
|
13092
|
+
# Update properties of this object
|
13093
|
+
def update!(**args)
|
13094
|
+
@image = args[:image] if args.key?(:image)
|
13095
|
+
end
|
13096
|
+
end
|
13097
|
+
|
13001
13098
|
# Contains a list of images.
|
13002
13099
|
class ImageList
|
13003
13100
|
include Google::Apis::Core::Hashable
|
@@ -13658,7 +13755,7 @@ module Google
|
|
13658
13755
|
attr_accessor :satisfies_pzs
|
13659
13756
|
alias_method :satisfies_pzs?, :satisfies_pzs
|
13660
13757
|
|
13661
|
-
# Sets the scheduling options for an Instance. NextID:
|
13758
|
+
# Sets the scheduling options for an Instance. NextID: 17
|
13662
13759
|
# Corresponds to the JSON property `scheduling`
|
13663
13760
|
# @return [Google::Apis::ComputeAlpha::Scheduling]
|
13664
13761
|
attr_accessor :scheduling
|
@@ -16492,7 +16589,7 @@ module Google
|
|
16492
16589
|
# @return [Array<String>]
|
16493
16590
|
attr_accessor :resource_policies
|
16494
16591
|
|
16495
|
-
# Sets the scheduling options for an Instance. NextID:
|
16592
|
+
# Sets the scheduling options for an Instance. NextID: 17
|
16496
16593
|
# Corresponds to the JSON property `scheduling`
|
16497
16594
|
# @return [Google::Apis::ComputeAlpha::Scheduling]
|
16498
16595
|
attr_accessor :scheduling
|
@@ -30300,6 +30397,12 @@ module Google
|
|
30300
30397
|
# @return [String]
|
30301
30398
|
attr_accessor :name
|
30302
30399
|
|
30400
|
+
# [Output Only] Reserved for future use.
|
30401
|
+
# Corresponds to the JSON property `satisfiesPzs`
|
30402
|
+
# @return [Boolean]
|
30403
|
+
attr_accessor :satisfies_pzs
|
30404
|
+
alias_method :satisfies_pzs?, :satisfies_pzs
|
30405
|
+
|
30303
30406
|
# [Output Only] Server-defined fully-qualified URL for this resource.
|
30304
30407
|
# Corresponds to the JSON property `selfLink`
|
30305
30408
|
# @return [String]
|
@@ -30351,6 +30454,7 @@ module Google
|
|
30351
30454
|
@id = args[:id] if args.key?(:id)
|
30352
30455
|
@kind = args[:kind] if args.key?(:kind)
|
30353
30456
|
@name = args[:name] if args.key?(:name)
|
30457
|
+
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
30354
30458
|
@self_link = args[:self_link] if args.key?(:self_link)
|
30355
30459
|
@self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
|
30356
30460
|
@share_settings = args[:share_settings] if args.key?(:share_settings)
|
@@ -30954,6 +31058,13 @@ module Google
|
|
30954
31058
|
# @return [String]
|
30955
31059
|
attr_accessor :region
|
30956
31060
|
|
31061
|
+
# Contains output only fields. Use this sub-message for all output fields set on
|
31062
|
+
# ResourcePolicy. The internal structure of this "status" field should mimic the
|
31063
|
+
# structure of ResourcePolicy proto specification.
|
31064
|
+
# Corresponds to the JSON property `resourceStatus`
|
31065
|
+
# @return [Google::Apis::ComputeAlpha::ResourcePolicyResourceStatus]
|
31066
|
+
attr_accessor :resource_status
|
31067
|
+
|
30957
31068
|
# [Output Only] Server-defined fully-qualified URL for this resource.
|
30958
31069
|
# Corresponds to the JSON property `selfLink`
|
30959
31070
|
# @return [String]
|
@@ -30995,6 +31106,7 @@ module Google
|
|
30995
31106
|
@kind = args[:kind] if args.key?(:kind)
|
30996
31107
|
@name = args[:name] if args.key?(:name)
|
30997
31108
|
@region = args[:region] if args.key?(:region)
|
31109
|
+
@resource_status = args[:resource_status] if args.key?(:resource_status)
|
30998
31110
|
@self_link = args[:self_link] if args.key?(:self_link)
|
30999
31111
|
@self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
|
31000
31112
|
@snapshot_schedule_policy = args[:snapshot_schedule_policy] if args.key?(:snapshot_schedule_policy)
|
@@ -31258,6 +31370,16 @@ module Google
|
|
31258
31370
|
class ResourcePolicyInstanceSchedulePolicy
|
31259
31371
|
include Google::Apis::Core::Hashable
|
31260
31372
|
|
31373
|
+
# The expiration time of the schedule. The timestamp is an RFC3339 string.
|
31374
|
+
# Corresponds to the JSON property `expirationTime`
|
31375
|
+
# @return [String]
|
31376
|
+
attr_accessor :expiration_time
|
31377
|
+
|
31378
|
+
# The start time of the schedule. The timestamp is an RFC3339 string.
|
31379
|
+
# Corresponds to the JSON property `startTime`
|
31380
|
+
# @return [String]
|
31381
|
+
attr_accessor :start_time
|
31382
|
+
|
31261
31383
|
# Specifies the time zone to be used in interpreting Schedule.schedule. The
|
31262
31384
|
# value of this field must be a time zone name from the tz database: http://en.
|
31263
31385
|
# wikipedia.org/wiki/Tz_database.
|
@@ -31281,6 +31403,8 @@ module Google
|
|
31281
31403
|
|
31282
31404
|
# Update properties of this object
|
31283
31405
|
def update!(**args)
|
31406
|
+
@expiration_time = args[:expiration_time] if args.key?(:expiration_time)
|
31407
|
+
@start_time = args[:start_time] if args.key?(:start_time)
|
31284
31408
|
@time_zone = args[:time_zone] if args.key?(:time_zone)
|
31285
31409
|
@vm_start_schedule = args[:vm_start_schedule] if args.key?(:vm_start_schedule)
|
31286
31410
|
@vm_stop_schedule = args[:vm_stop_schedule] if args.key?(:vm_stop_schedule)
|
@@ -31431,6 +31555,56 @@ module Google
|
|
31431
31555
|
end
|
31432
31556
|
end
|
31433
31557
|
|
31558
|
+
# Contains output only fields. Use this sub-message for all output fields set on
|
31559
|
+
# ResourcePolicy. The internal structure of this "status" field should mimic the
|
31560
|
+
# structure of ResourcePolicy proto specification.
|
31561
|
+
class ResourcePolicyResourceStatus
|
31562
|
+
include Google::Apis::Core::Hashable
|
31563
|
+
|
31564
|
+
# [Output Only] Specifies a set of output values reffering to the
|
31565
|
+
# instance_schedule_policy system status. This field should have the same name
|
31566
|
+
# as corresponding policy field.
|
31567
|
+
# Corresponds to the JSON property `instanceSchedulePolicy`
|
31568
|
+
# @return [Google::Apis::ComputeAlpha::ResourcePolicyResourceStatusInstanceSchedulePolicyStatus]
|
31569
|
+
attr_accessor :instance_schedule_policy
|
31570
|
+
|
31571
|
+
def initialize(**args)
|
31572
|
+
update!(**args)
|
31573
|
+
end
|
31574
|
+
|
31575
|
+
# Update properties of this object
|
31576
|
+
def update!(**args)
|
31577
|
+
@instance_schedule_policy = args[:instance_schedule_policy] if args.key?(:instance_schedule_policy)
|
31578
|
+
end
|
31579
|
+
end
|
31580
|
+
|
31581
|
+
#
|
31582
|
+
class ResourcePolicyResourceStatusInstanceSchedulePolicyStatus
|
31583
|
+
include Google::Apis::Core::Hashable
|
31584
|
+
|
31585
|
+
# [Output Only] The last time the schedule successfully ran. The timestamp is an
|
31586
|
+
# RFC3339 string.
|
31587
|
+
# Corresponds to the JSON property `lastRunStartTime`
|
31588
|
+
# @return [String]
|
31589
|
+
attr_accessor :last_run_start_time
|
31590
|
+
|
31591
|
+
# [Output Only] The next time the schedule is planned to run. The actual time
|
31592
|
+
# might be slightly different. The timestamp is an RFC3339 string.
|
31593
|
+
# Corresponds to the JSON property `nextRunStartTime`
|
31594
|
+
# @return [String]
|
31595
|
+
attr_accessor :next_run_start_time
|
31596
|
+
|
31597
|
+
def initialize(**args)
|
31598
|
+
update!(**args)
|
31599
|
+
end
|
31600
|
+
|
31601
|
+
# Update properties of this object
|
31602
|
+
def update!(**args)
|
31603
|
+
@last_run_start_time = args[:last_run_start_time] if args.key?(:last_run_start_time)
|
31604
|
+
@next_run_start_time = args[:next_run_start_time] if args.key?(:next_run_start_time)
|
31605
|
+
end
|
31606
|
+
end
|
31607
|
+
|
31434
31608
|
# A snapshot schedule policy specifies when and how frequently snapshots are to
|
31435
31609
|
# be created for the target disk. Also specifies how many and how long these
|
31436
31610
|
# scheduled snapshots should be retained.
|
@@ -31739,6 +31913,36 @@ module Google
|
|
31739
31913
|
end
|
31740
31914
|
end
|
31741
31915
|
|
31916
|
+
# A rollout policy configuration.
|
31917
|
+
class RolloutPolicy
|
31918
|
+
include Google::Apis::Core::Hashable
|
31919
|
+
|
31920
|
+
# An optional RFC3339 timestamp on or after which the update is considered
|
31921
|
+
# rolled out to any zone that is not explicitly stated.
|
31922
|
+
# Corresponds to the JSON property `defaultRolloutTime`
|
31923
|
+
# @return [String]
|
31924
|
+
attr_accessor :default_rollout_time
|
31925
|
+
|
31926
|
+
# Location based rollout policies to apply to the resource.
|
31927
|
+
# Currently only zone names are supported and must be represented as valid URLs,
|
31928
|
+
# like: zones/us-central1-a.
|
31929
|
+
# The value expects an RFC3339 timestamp on or after which the update is
|
31930
|
+
# considered rolled out to the specified location.
|
31931
|
+
# Corresponds to the JSON property `locationRolloutPolicies`
|
31932
|
+
# @return [Hash<String,String>]
|
31933
|
+
attr_accessor :location_rollout_policies
|
31934
|
+
|
31935
|
+
def initialize(**args)
|
31936
|
+
update!(**args)
|
31937
|
+
end
|
31938
|
+
|
31939
|
+
# Update properties of this object
|
31940
|
+
def update!(**args)
|
31941
|
+
@default_rollout_time = args[:default_rollout_time] if args.key?(:default_rollout_time)
|
31942
|
+
@location_rollout_policies = args[:location_rollout_policies] if args.key?(:location_rollout_policies)
|
31943
|
+
end
|
31944
|
+
end
|
31945
|
+
|
31742
31946
|
# Represents a Route resource.
|
31743
31947
|
# A route defines a path from VM instances in the VPC network to a specific
|
31744
31948
|
# destination. This destination can be inside or outside the VPC network. For
|
@@ -33768,7 +33972,7 @@ module Google
|
|
33768
33972
|
end
|
33769
33973
|
end
|
33770
33974
|
|
33771
|
-
# Sets the scheduling options for an Instance. NextID:
|
33975
|
+
# Sets the scheduling options for an Instance. NextID: 17
|
33772
33976
|
class Scheduling
|
33773
33977
|
include Google::Apis::Core::Hashable
|
33774
33978
|
|
@@ -34967,7 +35171,7 @@ module Google
|
|
34967
35171
|
# A service attachment represents a service that a producer has exposed. It
|
34968
35172
|
# encapsulates the load balancer which fronts the service runs and a list of NAT
|
34969
35173
|
# IP ranges that the producers uses to represent the consumers connecting to the
|
34970
|
-
# service.
|
35174
|
+
# service. next tag = 16
|
34971
35175
|
class ServiceAttachment
|
34972
35176
|
include Google::Apis::Core::Hashable
|
34973
35177
|
|
@@ -35070,6 +35274,129 @@ module Google
|
|
35070
35274
|
end
|
35071
35275
|
end
|
35072
35276
|
|
35277
|
+
# Contains a list of ServiceAttachmentsScopedList.
|
35278
|
+
class ServiceAttachmentAggregatedList
|
35279
|
+
include Google::Apis::Core::Hashable
|
35280
|
+
|
35281
|
+
# [Output Only] Unique identifier for the resource; defined by the server.
|
35282
|
+
# Corresponds to the JSON property `id`
|
35283
|
+
# @return [String]
|
35284
|
+
attr_accessor :id
|
35285
|
+
|
35286
|
+
# A list of ServiceAttachmentsScopedList resources.
|
35287
|
+
# Corresponds to the JSON property `items`
|
35288
|
+
# @return [Hash<String,Google::Apis::ComputeAlpha::ServiceAttachmentsScopedList>]
|
35289
|
+
attr_accessor :items
|
35290
|
+
|
35291
|
+
# Type of resource.
|
35292
|
+
# Corresponds to the JSON property `kind`
|
35293
|
+
# @return [String]
|
35294
|
+
attr_accessor :kind
|
35295
|
+
|
35296
|
+
# [Output Only] This token allows you to get the next page of results for list
|
35297
|
+
# requests. If the number of results is larger than maxResults, use the
|
35298
|
+
# nextPageToken as a value for the query parameter pageToken in the next list
|
35299
|
+
# request. Subsequent list requests will have their own nextPageToken to
|
35300
|
+
# continue paging through the results.
|
35301
|
+
# Corresponds to the JSON property `nextPageToken`
|
35302
|
+
# @return [String]
|
35303
|
+
attr_accessor :next_page_token
|
35304
|
+
|
35305
|
+
# [Output Only] Server-defined URL for this resource.
|
35306
|
+
# Corresponds to the JSON property `selfLink`
|
35307
|
+
# @return [String]
|
35308
|
+
attr_accessor :self_link
|
35309
|
+
|
35310
|
+
# [Output Only] Unreachable resources.
|
35311
|
+
# Corresponds to the JSON property `unreachables`
|
35312
|
+
# @return [Array<String>]
|
35313
|
+
attr_accessor :unreachables
|
35314
|
+
|
35315
|
+
# [Output Only] Informational warning message.
|
35316
|
+
# Corresponds to the JSON property `warning`
|
35317
|
+
# @return [Google::Apis::ComputeAlpha::ServiceAttachmentAggregatedList::Warning]
|
35318
|
+
attr_accessor :warning
|
35319
|
+
|
35320
|
+
def initialize(**args)
|
35321
|
+
update!(**args)
|
35322
|
+
end
|
35323
|
+
|
35324
|
+
# Update properties of this object
|
35325
|
+
def update!(**args)
|
35326
|
+
@id = args[:id] if args.key?(:id)
|
35327
|
+
@items = args[:items] if args.key?(:items)
|
35328
|
+
@kind = args[:kind] if args.key?(:kind)
|
35329
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
35330
|
+
@self_link = args[:self_link] if args.key?(:self_link)
|
35331
|
+
@unreachables = args[:unreachables] if args.key?(:unreachables)
|
35332
|
+
@warning = args[:warning] if args.key?(:warning)
|
35333
|
+
end
|
35334
|
+
|
35335
|
+
# [Output Only] Informational warning message.
|
35336
|
+
class Warning
|
35337
|
+
include Google::Apis::Core::Hashable
|
35338
|
+
|
35339
|
+
# [Output Only] A warning code, if applicable. For example, Compute Engine
|
35340
|
+
# returns NO_RESULTS_ON_PAGE if there are no results in the response.
|
35341
|
+
# Corresponds to the JSON property `code`
|
35342
|
+
# @return [String]
|
35343
|
+
attr_accessor :code
|
35344
|
+
|
35345
|
+
# [Output Only] Metadata about this warning in key: value format. For example:
|
35346
|
+
# "data": [ ` "key": "scope", "value": "zones/us-east1-d" `
|
35347
|
+
# Corresponds to the JSON property `data`
|
35348
|
+
# @return [Array<Google::Apis::ComputeAlpha::ServiceAttachmentAggregatedList::Warning::Datum>]
|
35349
|
+
attr_accessor :data
|
35350
|
+
|
35351
|
+
# [Output Only] A human-readable description of the warning code.
|
35352
|
+
# Corresponds to the JSON property `message`
|
35353
|
+
# @return [String]
|
35354
|
+
attr_accessor :message
|
35355
|
+
|
35356
|
+
def initialize(**args)
|
35357
|
+
update!(**args)
|
35358
|
+
end
|
35359
|
+
|
35360
|
+
# Update properties of this object
|
35361
|
+
def update!(**args)
|
35362
|
+
@code = args[:code] if args.key?(:code)
|
35363
|
+
@data = args[:data] if args.key?(:data)
|
35364
|
+
@message = args[:message] if args.key?(:message)
|
35365
|
+
end
|
35366
|
+
|
35367
|
+
#
|
35368
|
+
class Datum
|
35369
|
+
include Google::Apis::Core::Hashable
|
35370
|
+
|
35371
|
+
# [Output Only] A key that provides more detail on the warning being returned.
|
35372
|
+
# For example, for warnings where there are no results in a list request for a
|
35373
|
+
# particular zone, this key might be scope and the key value might be the zone
|
35374
|
+
# name. Other examples might be a key indicating a deprecated resource and a
|
35375
|
+
# suggested replacement, or a warning about invalid network settings (for
|
35376
|
+
# example, if an instance attempts to perform IP forwarding but is not enabled
|
35377
|
+
# for IP forwarding).
|
35378
|
+
# Corresponds to the JSON property `key`
|
35379
|
+
# @return [String]
|
35380
|
+
attr_accessor :key
|
35381
|
+
|
35382
|
+
# [Output Only] A warning data value corresponding to the key.
|
35383
|
+
# Corresponds to the JSON property `value`
|
35384
|
+
# @return [String]
|
35385
|
+
attr_accessor :value
|
35386
|
+
|
35387
|
+
def initialize(**args)
|
35388
|
+
update!(**args)
|
35389
|
+
end
|
35390
|
+
|
35391
|
+
# Update properties of this object
|
35392
|
+
def update!(**args)
|
35393
|
+
@key = args[:key] if args.key?(:key)
|
35394
|
+
@value = args[:value] if args.key?(:value)
|
35395
|
+
end
|
35396
|
+
end
|
35397
|
+
end
|
35398
|
+
end
|
35399
|
+
|
35073
35400
|
# [Output Only] A consumer forwarding rule connected to this service attachment.
|
35074
35401
|
class ServiceAttachmentConsumerForwardingRule
|
35075
35402
|
include Google::Apis::Core::Hashable
|
@@ -35213,6 +35540,97 @@ module Google
|
|
35213
35540
|
end
|
35214
35541
|
end
|
35215
35542
|
|
35543
|
+
#
|
35544
|
+
class ServiceAttachmentsScopedList
|
35545
|
+
include Google::Apis::Core::Hashable
|
35546
|
+
|
35547
|
+
# A list of ServiceAttachments contained in this scope.
|
35548
|
+
# Corresponds to the JSON property `resources`
|
35549
|
+
# @return [Array<Google::Apis::ComputeAlpha::ServiceAttachment>]
|
35550
|
+
attr_accessor :resources
|
35551
|
+
|
35552
|
+
# Informational warning which replaces the list of service attachments when the
|
35553
|
+
# list is empty.
|
35554
|
+
# Corresponds to the JSON property `warning`
|
35555
|
+
# @return [Google::Apis::ComputeAlpha::ServiceAttachmentsScopedList::Warning]
|
35556
|
+
attr_accessor :warning
|
35557
|
+
|
35558
|
+
def initialize(**args)
|
35559
|
+
update!(**args)
|
35560
|
+
end
|
35561
|
+
|
35562
|
+
# Update properties of this object
|
35563
|
+
def update!(**args)
|
35564
|
+
@resources = args[:resources] if args.key?(:resources)
|
35565
|
+
@warning = args[:warning] if args.key?(:warning)
|
35566
|
+
end
|
35567
|
+
|
35568
|
+
# Informational warning which replaces the list of service attachments when the
|
35569
|
+
# list is empty.
|
35570
|
+
class Warning
|
35571
|
+
include Google::Apis::Core::Hashable
|
35572
|
+
|
35573
|
+
# [Output Only] A warning code, if applicable. For example, Compute Engine
|
35574
|
+
# returns NO_RESULTS_ON_PAGE if there are no results in the response.
|
35575
|
+
# Corresponds to the JSON property `code`
|
35576
|
+
# @return [String]
|
35577
|
+
attr_accessor :code
|
35578
|
+
|
35579
|
+
# [Output Only] Metadata about this warning in key: value format. For example:
|
35580
|
+
# "data": [ ` "key": "scope", "value": "zones/us-east1-d" `
|
35581
|
+
# Corresponds to the JSON property `data`
|
35582
|
+
# @return [Array<Google::Apis::ComputeAlpha::ServiceAttachmentsScopedList::Warning::Datum>]
|
35583
|
+
attr_accessor :data
|
35584
|
+
|
35585
|
+
# [Output Only] A human-readable description of the warning code.
|
35586
|
+
# Corresponds to the JSON property `message`
|
35587
|
+
# @return [String]
|
35588
|
+
attr_accessor :message
|
35589
|
+
|
35590
|
+
def initialize(**args)
|
35591
|
+
update!(**args)
|
35592
|
+
end
|
35593
|
+
|
35594
|
+
# Update properties of this object
|
35595
|
+
def update!(**args)
|
35596
|
+
@code = args[:code] if args.key?(:code)
|
35597
|
+
@data = args[:data] if args.key?(:data)
|
35598
|
+
@message = args[:message] if args.key?(:message)
|
35599
|
+
end
|
35600
|
+
|
35601
|
+
#
|
35602
|
+
class Datum
|
35603
|
+
include Google::Apis::Core::Hashable
|
35604
|
+
|
35605
|
+
# [Output Only] A key that provides more detail on the warning being returned.
|
35606
|
+
# For example, for warnings where there are no results in a list request for a
|
35607
|
+
# particular zone, this key might be scope and the key value might be the zone
|
35608
|
+
# name. Other examples might be a key indicating a deprecated resource and a
|
35609
|
+
# suggested replacement, or a warning about invalid network settings (for
|
35610
|
+
# example, if an instance attempts to perform IP forwarding but is not enabled
|
35611
|
+
# for IP forwarding).
|
35612
|
+
# Corresponds to the JSON property `key`
|
35613
|
+
# @return [String]
|
35614
|
+
attr_accessor :key
|
35615
|
+
|
35616
|
+
# [Output Only] A warning data value corresponding to the key.
|
35617
|
+
# Corresponds to the JSON property `value`
|
35618
|
+
# @return [String]
|
35619
|
+
attr_accessor :value
|
35620
|
+
|
35621
|
+
def initialize(**args)
|
35622
|
+
update!(**args)
|
35623
|
+
end
|
35624
|
+
|
35625
|
+
# Update properties of this object
|
35626
|
+
def update!(**args)
|
35627
|
+
@key = args[:key] if args.key?(:key)
|
35628
|
+
@value = args[:value] if args.key?(:value)
|
35629
|
+
end
|
35630
|
+
end
|
35631
|
+
end
|
35632
|
+
end
|
35633
|
+
|
35216
35634
|
# A set of Shielded Instance options.
|
35217
35635
|
class ShieldedInstanceConfig
|
35218
35636
|
include Google::Apis::Core::Hashable
|
@@ -35944,7 +36362,7 @@ module Google
|
|
35944
36362
|
# @return [String]
|
35945
36363
|
attr_accessor :post_key_revocation_action_type
|
35946
36364
|
|
35947
|
-
# Sets the scheduling options for an Instance. NextID:
|
36365
|
+
# Sets the scheduling options for an Instance. NextID: 17
|
35948
36366
|
# Corresponds to the JSON property `scheduling`
|
35949
36367
|
# @return [Google::Apis::ComputeAlpha::Scheduling]
|
35950
36368
|
attr_accessor :scheduling
|