Class: Google::Apis::ComputeAlpha::InterconnectApplicationAwareInterconnect
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::InterconnectApplicationAwareInterconnect
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_alpha/classes.rb,
lib/google/apis/compute_alpha/representations.rb,
lib/google/apis/compute_alpha/representations.rb
Overview
Configuration information for application awareness on this Cloud Interconnect.
Instance Attribute Summary collapse
-
#bandwidth_percentage_policy ⇒ Google::Apis::ComputeAlpha::InterconnectApplicationAwareInterconnectBandwidthPercentagePolicy
Corresponds to the JSON property
bandwidthPercentagePolicy. -
#profile_description ⇒ String
Description for the application awareness profile on this Cloud Interconnect.
-
#shape_average_percentages ⇒ Array<Google::Apis::ComputeAlpha::InterconnectApplicationAwareInterconnectBandwidthPercentage>
Optional field to specify a list of shape average percentages to be applied in conjunction with StrictPriorityPolicy or BandwidthPercentagePolicy.
-
#strict_priority_policy ⇒ Google::Apis::ComputeAlpha::InterconnectApplicationAwareInterconnectStrictPriorityPolicy
Specify configuration for StrictPriorityPolicy.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InterconnectApplicationAwareInterconnect
constructor
A new instance of InterconnectApplicationAwareInterconnect.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ InterconnectApplicationAwareInterconnect
Returns a new instance of InterconnectApplicationAwareInterconnect.
23632 23633 23634 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 23632 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bandwidth_percentage_policy ⇒ Google::Apis::ComputeAlpha::InterconnectApplicationAwareInterconnectBandwidthPercentagePolicy
Corresponds to the JSON property bandwidthPercentagePolicy
23614 23615 23616 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 23614 def bandwidth_percentage_policy @bandwidth_percentage_policy end |
#profile_description ⇒ String
Description for the application awareness profile on this Cloud Interconnect.
Corresponds to the JSON property profileDescription
23619 23620 23621 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 23619 def profile_description @profile_description end |
#shape_average_percentages ⇒ Array<Google::Apis::ComputeAlpha::InterconnectApplicationAwareInterconnectBandwidthPercentage>
Optional field to specify a list of shape average percentages to be applied in
conjunction with StrictPriorityPolicy or BandwidthPercentagePolicy.
Corresponds to the JSON property shapeAveragePercentages
23625 23626 23627 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 23625 def shape_average_percentages @shape_average_percentages end |
#strict_priority_policy ⇒ Google::Apis::ComputeAlpha::InterconnectApplicationAwareInterconnectStrictPriorityPolicy
Specify configuration for StrictPriorityPolicy.
Corresponds to the JSON property strictPriorityPolicy
23630 23631 23632 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 23630 def strict_priority_policy @strict_priority_policy end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
23637 23638 23639 23640 23641 23642 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 23637 def update!(**args) @bandwidth_percentage_policy = args[:bandwidth_percentage_policy] if args.key?(:bandwidth_percentage_policy) @profile_description = args[:profile_description] if args.key?(:profile_description) @shape_average_percentages = args[:shape_average_percentages] if args.key?(:shape_average_percentages) @strict_priority_policy = args[:strict_priority_policy] if args.key?(:strict_priority_policy) end |