google-apis-compute_alpha 0.96.0 → 0.97.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: 92ab0f38616388665f15716880d532ba38a5f581e8aa4018d34bd3837d35b3d0
|
4
|
+
data.tar.gz: 0772f01cdd93ebe94ce98e8cf38b77c1e258e140be2c3f78ac8ff08c5b91b55b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7dc971328bb2bb5413c6fde122bcd4d019e13683dcb038bcc50bd4e0c74ba485033cfe4df54639be873928bfe9ce82349a0566688f803c791ea3275db91c2825
|
7
|
+
data.tar.gz: 8787a85a3899632cbcdb5bad2ffa5b03bf33c9432a33064a1a5836cc9c0ea7d14667b0a02cd38a7c2fb292119c3395216dfd2aab995cb0c8ea233d7d5e67d4b0
|
data/CHANGELOG.md
CHANGED
@@ -21937,6 +21937,12 @@ module Google
|
|
21937
21937
|
attr_accessor :admin_enabled
|
21938
21938
|
alias_method :admin_enabled?, :admin_enabled
|
21939
21939
|
|
21940
|
+
# Configuration information for enabling Application Aware Interconnect (AAI) on
|
21941
|
+
# this Cloud Interconnect connection between Google and your on-premises router.
|
21942
|
+
# Corresponds to the JSON property `applicationAwareInterconnect`
|
21943
|
+
# @return [Google::Apis::ComputeAlpha::InterconnectApplicationAwareInterconnect]
|
21944
|
+
attr_accessor :application_aware_interconnect
|
21945
|
+
|
21940
21946
|
# [Output only] List of features available for this Interconnect connection,
|
21941
21947
|
# which can take one of the following values: - MACSEC If present then the
|
21942
21948
|
# Interconnect connection is provisioned on MACsec capable hardware ports. If
|
@@ -22158,6 +22164,7 @@ module Google
|
|
22158
22164
|
# Update properties of this object
|
22159
22165
|
def update!(**args)
|
22160
22166
|
@admin_enabled = args[:admin_enabled] if args.key?(:admin_enabled)
|
22167
|
+
@application_aware_interconnect = args[:application_aware_interconnect] if args.key?(:application_aware_interconnect)
|
22161
22168
|
@available_features = args[:available_features] if args.key?(:available_features)
|
22162
22169
|
@circuit_infos = args[:circuit_infos] if args.key?(:circuit_infos)
|
22163
22170
|
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
@@ -22191,6 +22198,106 @@ module Google
|
|
22191
22198
|
end
|
22192
22199
|
end
|
22193
22200
|
|
22201
|
+
# Configuration information for enabling Application Aware Interconnect (AAI) on
|
22202
|
+
# this Cloud Interconnect connection between Google and your on-premises router.
|
22203
|
+
class InterconnectApplicationAwareInterconnect
|
22204
|
+
include Google::Apis::Core::Hashable
|
22205
|
+
|
22206
|
+
#
|
22207
|
+
# Corresponds to the JSON property `bandwidthPercentagePolicy`
|
22208
|
+
# @return [Google::Apis::ComputeAlpha::InterconnectApplicationAwareInterconnectBandwidthPercentagePolicy]
|
22209
|
+
attr_accessor :bandwidth_percentage_policy
|
22210
|
+
|
22211
|
+
# Enable or disable the AAI feature on this interconnect.
|
22212
|
+
# Corresponds to the JSON property `enabled`
|
22213
|
+
# @return [Boolean]
|
22214
|
+
attr_accessor :enabled
|
22215
|
+
alias_method :enabled?, :enabled
|
22216
|
+
|
22217
|
+
# A description for the AAI profile on this interconnect.
|
22218
|
+
# Corresponds to the JSON property `profileDescription`
|
22219
|
+
# @return [String]
|
22220
|
+
attr_accessor :profile_description
|
22221
|
+
|
22222
|
+
# Specify configuration for StrictPriorityPolicy.
|
22223
|
+
# Corresponds to the JSON property `strictPriorityPolicy`
|
22224
|
+
# @return [Google::Apis::ComputeAlpha::InterconnectApplicationAwareInterconnectStrictPriorityPolicy]
|
22225
|
+
attr_accessor :strict_priority_policy
|
22226
|
+
|
22227
|
+
def initialize(**args)
|
22228
|
+
update!(**args)
|
22229
|
+
end
|
22230
|
+
|
22231
|
+
# Update properties of this object
|
22232
|
+
def update!(**args)
|
22233
|
+
@bandwidth_percentage_policy = args[:bandwidth_percentage_policy] if args.key?(:bandwidth_percentage_policy)
|
22234
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
22235
|
+
@profile_description = args[:profile_description] if args.key?(:profile_description)
|
22236
|
+
@strict_priority_policy = args[:strict_priority_policy] if args.key?(:strict_priority_policy)
|
22237
|
+
end
|
22238
|
+
end
|
22239
|
+
|
22240
|
+
# Specify bandwidth percentages (0-100) for various traffic classes in
|
22241
|
+
# BandwidthPercentagePolicy. The sum of all percentages must equal 100. It is
|
22242
|
+
# valid to specify percentages for some classes and not for others. The others
|
22243
|
+
# will be implicitly marked as 0.
|
22244
|
+
class InterconnectApplicationAwareInterconnectBandwidthPercentage
|
22245
|
+
include Google::Apis::Core::Hashable
|
22246
|
+
|
22247
|
+
# Bandwidth percentage for a specific traffic class.
|
22248
|
+
# Corresponds to the JSON property `percentage`
|
22249
|
+
# @return [Fixnum]
|
22250
|
+
attr_accessor :percentage
|
22251
|
+
|
22252
|
+
# TrafficClass whose bandwidth percentage is being specified.
|
22253
|
+
# Corresponds to the JSON property `trafficClass`
|
22254
|
+
# @return [String]
|
22255
|
+
attr_accessor :traffic_class
|
22256
|
+
|
22257
|
+
def initialize(**args)
|
22258
|
+
update!(**args)
|
22259
|
+
end
|
22260
|
+
|
22261
|
+
# Update properties of this object
|
22262
|
+
def update!(**args)
|
22263
|
+
@percentage = args[:percentage] if args.key?(:percentage)
|
22264
|
+
@traffic_class = args[:traffic_class] if args.key?(:traffic_class)
|
22265
|
+
end
|
22266
|
+
end
|
22267
|
+
|
22268
|
+
#
|
22269
|
+
class InterconnectApplicationAwareInterconnectBandwidthPercentagePolicy
|
22270
|
+
include Google::Apis::Core::Hashable
|
22271
|
+
|
22272
|
+
# Specify bandwidth percentages for various traffic classes for queuing type
|
22273
|
+
# Bandwidth Percent.
|
22274
|
+
# Corresponds to the JSON property `bandwidthPercentages`
|
22275
|
+
# @return [Array<Google::Apis::ComputeAlpha::InterconnectApplicationAwareInterconnectBandwidthPercentage>]
|
22276
|
+
attr_accessor :bandwidth_percentages
|
22277
|
+
|
22278
|
+
def initialize(**args)
|
22279
|
+
update!(**args)
|
22280
|
+
end
|
22281
|
+
|
22282
|
+
# Update properties of this object
|
22283
|
+
def update!(**args)
|
22284
|
+
@bandwidth_percentages = args[:bandwidth_percentages] if args.key?(:bandwidth_percentages)
|
22285
|
+
end
|
22286
|
+
end
|
22287
|
+
|
22288
|
+
# Specify configuration for StrictPriorityPolicy.
|
22289
|
+
class InterconnectApplicationAwareInterconnectStrictPriorityPolicy
|
22290
|
+
include Google::Apis::Core::Hashable
|
22291
|
+
|
22292
|
+
def initialize(**args)
|
22293
|
+
update!(**args)
|
22294
|
+
end
|
22295
|
+
|
22296
|
+
# Update properties of this object
|
22297
|
+
def update!(**args)
|
22298
|
+
end
|
22299
|
+
end
|
22300
|
+
|
22194
22301
|
# Represents an Interconnect Attachment (VLAN) resource. You can use
|
22195
22302
|
# Interconnect attachments (VLANS) to connect your Virtual Private Cloud
|
22196
22303
|
# networks to your on-premises networks through an Interconnect. For more
|
@@ -33906,8 +34013,9 @@ module Google
|
|
33906
34013
|
# header transformations, before forwarding the request to the selected backend.
|
33907
34014
|
# If defaultRouteAction specifies any weightedBackendServices, defaultService
|
33908
34015
|
# must not be set. Conversely if defaultService is set, defaultRouteAction
|
33909
|
-
# cannot contain any weightedBackendServices.
|
33910
|
-
#
|
34016
|
+
# cannot contain any weightedBackendServices. If defaultRouteAction is specified,
|
34017
|
+
# don't set defaultUrlRedirect. If defaultRouteAction.weightedBackendServices
|
34018
|
+
# is specified, don't set defaultService. URL maps for classic Application Load
|
33911
34019
|
# Balancers only support the urlRewrite action within a path matcher's
|
33912
34020
|
# defaultRouteAction.
|
33913
34021
|
# Corresponds to the JSON property `defaultRouteAction`
|
@@ -33924,11 +34032,11 @@ module Google
|
|
33924
34032
|
# before sending the request to the backend. However, if defaultService is
|
33925
34033
|
# specified, defaultRouteAction cannot contain any weightedBackendServices.
|
33926
34034
|
# Conversely, if defaultRouteAction specifies any weightedBackendServices,
|
33927
|
-
# defaultService must not be specified.
|
33928
|
-
# defaultUrlRedirect
|
33929
|
-
# Authorization requires one or more of the following Google IAM
|
33930
|
-
# the specified resource default_service: - compute.
|
33931
|
-
# backendServices.use
|
34035
|
+
# defaultService must not be specified. If defaultService is specified, then set
|
34036
|
+
# either defaultUrlRedirect or defaultRouteAction.weightedBackendService. Don't
|
34037
|
+
# set both. Authorization requires one or more of the following Google IAM
|
34038
|
+
# permissions on the specified resource default_service: - compute.
|
34039
|
+
# backendBuckets.use - compute.backendServices.use
|
33932
34040
|
# Corresponds to the JSON property `defaultService`
|
33933
34041
|
# @return [String]
|
33934
34042
|
attr_accessor :default_service
|
@@ -38186,6 +38294,12 @@ module Google
|
|
38186
38294
|
# @return [String]
|
38187
38295
|
attr_accessor :name
|
38188
38296
|
|
38297
|
+
# [Output only] Priority of firewall policy association. Not applicable for type=
|
38298
|
+
# HIERARCHY.
|
38299
|
+
# Corresponds to the JSON property `priority`
|
38300
|
+
# @return [Fixnum]
|
38301
|
+
attr_accessor :priority
|
38302
|
+
|
38189
38303
|
# The rules that apply to the network.
|
38190
38304
|
# Corresponds to the JSON property `rules`
|
38191
38305
|
# @return [Array<Google::Apis::ComputeAlpha::FirewallPolicyRule>]
|
@@ -38205,6 +38319,7 @@ module Google
|
|
38205
38319
|
def update!(**args)
|
38206
38320
|
@display_name = args[:display_name] if args.key?(:display_name)
|
38207
38321
|
@name = args[:name] if args.key?(:name)
|
38322
|
+
@priority = args[:priority] if args.key?(:priority)
|
38208
38323
|
@rules = args[:rules] if args.key?(:rules)
|
38209
38324
|
@type = args[:type] if args.key?(:type)
|
38210
38325
|
end
|
@@ -55217,9 +55332,9 @@ module Google
|
|
55217
55332
|
# sending the request to the backend. However, if defaultService is specified,
|
55218
55333
|
# defaultRouteAction cannot contain any weightedBackendServices. Conversely, if
|
55219
55334
|
# routeAction specifies any weightedBackendServices, service must not be
|
55220
|
-
# specified.
|
55221
|
-
# defaultRouteAction.weightedBackendService
|
55222
|
-
# effect when the URL map is bound to a target gRPC proxy that has the
|
55335
|
+
# specified. If defaultService is specified, then set either defaultUrlRedirect ,
|
55336
|
+
# or defaultRouteAction.weightedBackendService Don't set both. defaultService
|
55337
|
+
# has no effect when the URL map is bound to a target gRPC proxy that has the
|
55223
55338
|
# validateForProxyless field set to true.
|
55224
55339
|
# Corresponds to the JSON property `defaultService`
|
55225
55340
|
# @return [String]
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ComputeAlpha
|
18
18
|
# Version of the google-apis-compute_alpha gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.97.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.14.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240326"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -2728,6 +2728,30 @@ module Google
|
|
2728
2728
|
include Google::Apis::Core::JsonObjectSupport
|
2729
2729
|
end
|
2730
2730
|
|
2731
|
+
class InterconnectApplicationAwareInterconnect
|
2732
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2733
|
+
|
2734
|
+
include Google::Apis::Core::JsonObjectSupport
|
2735
|
+
end
|
2736
|
+
|
2737
|
+
class InterconnectApplicationAwareInterconnectBandwidthPercentage
|
2738
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2739
|
+
|
2740
|
+
include Google::Apis::Core::JsonObjectSupport
|
2741
|
+
end
|
2742
|
+
|
2743
|
+
class InterconnectApplicationAwareInterconnectBandwidthPercentagePolicy
|
2744
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2745
|
+
|
2746
|
+
include Google::Apis::Core::JsonObjectSupport
|
2747
|
+
end
|
2748
|
+
|
2749
|
+
class InterconnectApplicationAwareInterconnectStrictPriorityPolicy
|
2750
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2751
|
+
|
2752
|
+
include Google::Apis::Core::JsonObjectSupport
|
2753
|
+
end
|
2754
|
+
|
2731
2755
|
class InterconnectAttachment
|
2732
2756
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2733
2757
|
|
@@ -12855,6 +12879,8 @@ module Google
|
|
12855
12879
|
# @private
|
12856
12880
|
class Representation < Google::Apis::Core::JsonRepresentation
|
12857
12881
|
property :admin_enabled, as: 'adminEnabled'
|
12882
|
+
property :application_aware_interconnect, as: 'applicationAwareInterconnect', class: Google::Apis::ComputeAlpha::InterconnectApplicationAwareInterconnect, decorator: Google::Apis::ComputeAlpha::InterconnectApplicationAwareInterconnect::Representation
|
12883
|
+
|
12858
12884
|
collection :available_features, as: 'availableFeatures'
|
12859
12885
|
collection :circuit_infos, as: 'circuitInfos', class: Google::Apis::ComputeAlpha::InterconnectCircuitInfo, decorator: Google::Apis::ComputeAlpha::InterconnectCircuitInfo::Representation
|
12860
12886
|
|
@@ -12891,6 +12917,40 @@ module Google
|
|
12891
12917
|
end
|
12892
12918
|
end
|
12893
12919
|
|
12920
|
+
class InterconnectApplicationAwareInterconnect
|
12921
|
+
# @private
|
12922
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
12923
|
+
property :bandwidth_percentage_policy, as: 'bandwidthPercentagePolicy', class: Google::Apis::ComputeAlpha::InterconnectApplicationAwareInterconnectBandwidthPercentagePolicy, decorator: Google::Apis::ComputeAlpha::InterconnectApplicationAwareInterconnectBandwidthPercentagePolicy::Representation
|
12924
|
+
|
12925
|
+
property :enabled, as: 'enabled'
|
12926
|
+
property :profile_description, as: 'profileDescription'
|
12927
|
+
property :strict_priority_policy, as: 'strictPriorityPolicy', class: Google::Apis::ComputeAlpha::InterconnectApplicationAwareInterconnectStrictPriorityPolicy, decorator: Google::Apis::ComputeAlpha::InterconnectApplicationAwareInterconnectStrictPriorityPolicy::Representation
|
12928
|
+
|
12929
|
+
end
|
12930
|
+
end
|
12931
|
+
|
12932
|
+
class InterconnectApplicationAwareInterconnectBandwidthPercentage
|
12933
|
+
# @private
|
12934
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
12935
|
+
property :percentage, as: 'percentage'
|
12936
|
+
property :traffic_class, as: 'trafficClass'
|
12937
|
+
end
|
12938
|
+
end
|
12939
|
+
|
12940
|
+
class InterconnectApplicationAwareInterconnectBandwidthPercentagePolicy
|
12941
|
+
# @private
|
12942
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
12943
|
+
collection :bandwidth_percentages, as: 'bandwidthPercentages', class: Google::Apis::ComputeAlpha::InterconnectApplicationAwareInterconnectBandwidthPercentage, decorator: Google::Apis::ComputeAlpha::InterconnectApplicationAwareInterconnectBandwidthPercentage::Representation
|
12944
|
+
|
12945
|
+
end
|
12946
|
+
end
|
12947
|
+
|
12948
|
+
class InterconnectApplicationAwareInterconnectStrictPriorityPolicy
|
12949
|
+
# @private
|
12950
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
12951
|
+
end
|
12952
|
+
end
|
12953
|
+
|
12894
12954
|
class InterconnectAttachment
|
12895
12955
|
# @private
|
12896
12956
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -16988,6 +17048,7 @@ module Google
|
|
16988
17048
|
class Representation < Google::Apis::Core::JsonRepresentation
|
16989
17049
|
property :display_name, as: 'displayName'
|
16990
17050
|
property :name, as: 'name'
|
17051
|
+
property :priority, as: 'priority'
|
16991
17052
|
collection :rules, as: 'rules', class: Google::Apis::ComputeAlpha::FirewallPolicyRule, decorator: Google::Apis::ComputeAlpha::FirewallPolicyRule::Representation
|
16992
17053
|
|
16993
17054
|
property :type, as: 'type'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-compute_alpha
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.97.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-04-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_alpha/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_alpha/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_alpha/v0.97.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_alpha
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|