google-apis-compute_beta 0.26.0 → 0.27.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/compute_beta/classes.rb +328 -67
- data/lib/google/apis/compute_beta/gem_version.rb +2 -2
- data/lib/google/apis/compute_beta/representations.rb +97 -0
- data/lib/google/apis/compute_beta/service.rb +4737 -3109
- metadata +3 -3
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ComputeBeta
|
18
18
|
# Version of the google-apis-compute_beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.27.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220224"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -994,6 +994,12 @@ module Google
|
|
994
994
|
include Google::Apis::Core::JsonObjectSupport
|
995
995
|
end
|
996
996
|
|
997
|
+
class FirewallPolicyRuleSecureTag
|
998
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
999
|
+
|
1000
|
+
include Google::Apis::Core::JsonObjectSupport
|
1001
|
+
end
|
1002
|
+
|
997
1003
|
class FixedOrPercent
|
998
1004
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
999
1005
|
|
@@ -1462,6 +1468,18 @@ module Google
|
|
1462
1468
|
include Google::Apis::Core::JsonObjectSupport
|
1463
1469
|
end
|
1464
1470
|
|
1471
|
+
class InstanceConsumptionData
|
1472
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1473
|
+
|
1474
|
+
include Google::Apis::Core::JsonObjectSupport
|
1475
|
+
end
|
1476
|
+
|
1477
|
+
class InstanceConsumptionInfo
|
1478
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1479
|
+
|
1480
|
+
include Google::Apis::Core::JsonObjectSupport
|
1481
|
+
end
|
1482
|
+
|
1465
1483
|
class InstanceGroup
|
1466
1484
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1467
1485
|
|
@@ -3556,6 +3574,18 @@ module Google
|
|
3556
3574
|
include Google::Apis::Core::JsonObjectSupport
|
3557
3575
|
end
|
3558
3576
|
|
3577
|
+
class RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponse
|
3578
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3579
|
+
|
3580
|
+
include Google::Apis::Core::JsonObjectSupport
|
3581
|
+
end
|
3582
|
+
|
3583
|
+
class RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirewallPolicy
|
3584
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3585
|
+
|
3586
|
+
include Google::Apis::Core::JsonObjectSupport
|
3587
|
+
end
|
3588
|
+
|
3559
3589
|
class RegionSetLabelsRequest
|
3560
3590
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3561
3591
|
|
@@ -7341,6 +7371,7 @@ module Google
|
|
7341
7371
|
property :kind, as: 'kind'
|
7342
7372
|
property :name, as: 'name'
|
7343
7373
|
property :parent, as: 'parent'
|
7374
|
+
property :region, as: 'region'
|
7344
7375
|
property :rule_tuple_count, as: 'ruleTupleCount'
|
7345
7376
|
collection :rules, as: 'rules', class: Google::Apis::ComputeBeta::FirewallPolicyRule, decorator: Google::Apis::ComputeBeta::FirewallPolicyRule::Representation
|
7346
7377
|
|
@@ -7406,6 +7437,8 @@ module Google
|
|
7406
7437
|
property :priority, as: 'priority'
|
7407
7438
|
property :rule_tuple_count, as: 'ruleTupleCount'
|
7408
7439
|
collection :target_resources, as: 'targetResources'
|
7440
|
+
collection :target_secure_tags, as: 'targetSecureTags', class: Google::Apis::ComputeBeta::FirewallPolicyRuleSecureTag, decorator: Google::Apis::ComputeBeta::FirewallPolicyRuleSecureTag::Representation
|
7441
|
+
|
7409
7442
|
collection :target_service_accounts, as: 'targetServiceAccounts'
|
7410
7443
|
end
|
7411
7444
|
end
|
@@ -7417,6 +7450,8 @@ module Google
|
|
7417
7450
|
collection :layer4_configs, as: 'layer4Configs', class: Google::Apis::ComputeBeta::FirewallPolicyRuleMatcherLayer4Config, decorator: Google::Apis::ComputeBeta::FirewallPolicyRuleMatcherLayer4Config::Representation
|
7418
7451
|
|
7419
7452
|
collection :src_ip_ranges, as: 'srcIpRanges'
|
7453
|
+
collection :src_secure_tags, as: 'srcSecureTags', class: Google::Apis::ComputeBeta::FirewallPolicyRuleSecureTag, decorator: Google::Apis::ComputeBeta::FirewallPolicyRuleSecureTag::Representation
|
7454
|
+
|
7420
7455
|
end
|
7421
7456
|
end
|
7422
7457
|
|
@@ -7428,6 +7463,14 @@ module Google
|
|
7428
7463
|
end
|
7429
7464
|
end
|
7430
7465
|
|
7466
|
+
class FirewallPolicyRuleSecureTag
|
7467
|
+
# @private
|
7468
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7469
|
+
property :name, as: 'name'
|
7470
|
+
property :state, as: 'state'
|
7471
|
+
end
|
7472
|
+
end
|
7473
|
+
|
7431
7474
|
class FixedOrPercent
|
7432
7475
|
# @private
|
7433
7476
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -8433,6 +8476,25 @@ module Google
|
|
8433
8476
|
end
|
8434
8477
|
end
|
8435
8478
|
|
8479
|
+
class InstanceConsumptionData
|
8480
|
+
# @private
|
8481
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
8482
|
+
property :consumption_info, as: 'consumptionInfo', class: Google::Apis::ComputeBeta::InstanceConsumptionInfo, decorator: Google::Apis::ComputeBeta::InstanceConsumptionInfo::Representation
|
8483
|
+
|
8484
|
+
property :instance, as: 'instance'
|
8485
|
+
end
|
8486
|
+
end
|
8487
|
+
|
8488
|
+
class InstanceConsumptionInfo
|
8489
|
+
# @private
|
8490
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
8491
|
+
property :guest_cpus, as: 'guestCpus'
|
8492
|
+
property :local_ssd_gb, as: 'localSsdGb'
|
8493
|
+
property :memory_mb, as: 'memoryMb'
|
8494
|
+
property :min_node_cpus, as: 'minNodeCpus'
|
8495
|
+
end
|
8496
|
+
end
|
8497
|
+
|
8436
8498
|
class InstanceGroup
|
8437
8499
|
# @private
|
8438
8500
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -10155,16 +10217,20 @@ module Google
|
|
10155
10217
|
property :auto_create_subnetworks, as: 'autoCreateSubnetworks'
|
10156
10218
|
property :creation_timestamp, as: 'creationTimestamp'
|
10157
10219
|
property :description, as: 'description'
|
10220
|
+
property :enable_ula_internal_ipv6, as: 'enableUlaInternalIpv6'
|
10158
10221
|
property :gateway_i_pv4, as: 'gatewayIPv4'
|
10159
10222
|
property :id, :numeric_string => true, as: 'id'
|
10223
|
+
property :internal_ipv6_range, as: 'internalIpv6Range'
|
10160
10224
|
property :kind, as: 'kind'
|
10161
10225
|
property :mtu, as: 'mtu'
|
10162
10226
|
property :name, as: 'name'
|
10227
|
+
property :network_firewall_policy_enforcement_order, as: 'networkFirewallPolicyEnforcementOrder'
|
10163
10228
|
collection :peerings, as: 'peerings', class: Google::Apis::ComputeBeta::NetworkPeering, decorator: Google::Apis::ComputeBeta::NetworkPeering::Representation
|
10164
10229
|
|
10165
10230
|
property :routing_config, as: 'routingConfig', class: Google::Apis::ComputeBeta::NetworkRoutingConfig, decorator: Google::Apis::ComputeBeta::NetworkRoutingConfig::Representation
|
10166
10231
|
|
10167
10232
|
property :self_link, as: 'selfLink'
|
10233
|
+
property :self_link_with_id, as: 'selfLinkWithId'
|
10168
10234
|
collection :subnetworks, as: 'subnetworks'
|
10169
10235
|
end
|
10170
10236
|
end
|
@@ -10432,6 +10498,7 @@ module Google
|
|
10432
10498
|
collection :alias_ip_ranges, as: 'aliasIpRanges', class: Google::Apis::ComputeBeta::AliasIpRange, decorator: Google::Apis::ComputeBeta::AliasIpRange::Representation
|
10433
10499
|
|
10434
10500
|
property :fingerprint, :base64 => true, as: 'fingerprint'
|
10501
|
+
property :internal_ipv6_prefix_length, as: 'internalIpv6PrefixLength'
|
10435
10502
|
collection :ipv6_access_configs, as: 'ipv6AccessConfigs', class: Google::Apis::ComputeBeta::AccessConfig, decorator: Google::Apis::ComputeBeta::AccessConfig::Representation
|
10436
10503
|
|
10437
10504
|
property :ipv6_access_type, as: 'ipv6AccessType'
|
@@ -10586,6 +10653,8 @@ module Google
|
|
10586
10653
|
property :name, as: 'name'
|
10587
10654
|
property :node_template, as: 'nodeTemplate'
|
10588
10655
|
property :self_link, as: 'selfLink'
|
10656
|
+
property :share_settings, as: 'shareSettings', class: Google::Apis::ComputeBeta::ShareSettings, decorator: Google::Apis::ComputeBeta::ShareSettings::Representation
|
10657
|
+
|
10589
10658
|
property :size, as: 'size'
|
10590
10659
|
property :status, as: 'status'
|
10591
10660
|
property :zone, as: 'zone'
|
@@ -10680,9 +10749,13 @@ module Google
|
|
10680
10749
|
class Representation < Google::Apis::Core::JsonRepresentation
|
10681
10750
|
collection :accelerators, as: 'accelerators', class: Google::Apis::ComputeBeta::AcceleratorConfig, decorator: Google::Apis::ComputeBeta::AcceleratorConfig::Representation
|
10682
10751
|
|
10752
|
+
property :consumed_resources, as: 'consumedResources', class: Google::Apis::ComputeBeta::InstanceConsumptionInfo, decorator: Google::Apis::ComputeBeta::InstanceConsumptionInfo::Representation
|
10753
|
+
|
10683
10754
|
property :cpu_overcommit_type, as: 'cpuOvercommitType'
|
10684
10755
|
collection :disks, as: 'disks', class: Google::Apis::ComputeBeta::LocalDisk, decorator: Google::Apis::ComputeBeta::LocalDisk::Representation
|
10685
10756
|
|
10757
|
+
collection :instance_consumption_data, as: 'instanceConsumptionData', class: Google::Apis::ComputeBeta::InstanceConsumptionData, decorator: Google::Apis::ComputeBeta::InstanceConsumptionData::Representation
|
10758
|
+
|
10686
10759
|
collection :instances, as: 'instances'
|
10687
10760
|
property :name, as: 'name'
|
10688
10761
|
property :node_type, as: 'nodeType'
|
@@ -10691,6 +10764,8 @@ module Google
|
|
10691
10764
|
|
10692
10765
|
property :server_id, as: 'serverId'
|
10693
10766
|
property :status, as: 'status'
|
10767
|
+
property :total_resources, as: 'totalResources', class: Google::Apis::ComputeBeta::InstanceConsumptionInfo, decorator: Google::Apis::ComputeBeta::InstanceConsumptionInfo::Representation
|
10768
|
+
|
10694
10769
|
end
|
10695
10770
|
end
|
10696
10771
|
|
@@ -12213,6 +12288,27 @@ module Google
|
|
12213
12288
|
end
|
12214
12289
|
end
|
12215
12290
|
|
12291
|
+
class RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponse
|
12292
|
+
# @private
|
12293
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
12294
|
+
collection :firewall_policys, as: 'firewallPolicys', class: Google::Apis::ComputeBeta::RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirewallPolicy, decorator: Google::Apis::ComputeBeta::RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirewallPolicy::Representation
|
12295
|
+
|
12296
|
+
collection :firewalls, as: 'firewalls', class: Google::Apis::ComputeBeta::Firewall, decorator: Google::Apis::ComputeBeta::Firewall::Representation
|
12297
|
+
|
12298
|
+
end
|
12299
|
+
end
|
12300
|
+
|
12301
|
+
class RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirewallPolicy
|
12302
|
+
# @private
|
12303
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
12304
|
+
property :display_name, as: 'displayName'
|
12305
|
+
property :name, as: 'name'
|
12306
|
+
collection :rules, as: 'rules', class: Google::Apis::ComputeBeta::FirewallPolicyRule, decorator: Google::Apis::ComputeBeta::FirewallPolicyRule::Representation
|
12307
|
+
|
12308
|
+
property :type, as: 'type'
|
12309
|
+
end
|
12310
|
+
end
|
12311
|
+
|
12216
12312
|
class RegionSetLabelsRequest
|
12217
12313
|
# @private
|
12218
12314
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -14029,6 +14125,7 @@ module Google
|
|
14029
14125
|
property :fingerprint, :base64 => true, as: 'fingerprint'
|
14030
14126
|
property :gateway_address, as: 'gatewayAddress'
|
14031
14127
|
property :id, :numeric_string => true, as: 'id'
|
14128
|
+
property :internal_ipv6_prefix, as: 'internalIpv6Prefix'
|
14032
14129
|
property :ip_cidr_range, as: 'ipCidrRange'
|
14033
14130
|
property :ipv6_access_type, as: 'ipv6AccessType'
|
14034
14131
|
property :ipv6_cidr_range, as: 'ipv6CidrRange'
|