class Google::Apis::AppengineV1beta4::TrafficSplit

Traffic routing configuration for versions within a single module. Traffic splits define how traffic directed to the module is assigned to versions.

Attributes

allocations[RW]

Mapping from version IDs within the module to fractional (0.000, 1] allocations of traffic for that version. Each version can be specified only once, but some versions in the module may not have any traffic allocation. Modules that have traffic allocated cannot be deleted until either the module is deleted or their traffic allocation is removed. Allocations must sum to 1. Up to two decimal place precision is supported for IP-based splits and up to three decimal places is supported for cookie-based splits. Corresponds to the JSON property `allocations` @return [Hash<String,Float>]

shard_by[RW]

Mechanism used to determine which version a request is sent to. The traffic selection algorithm will be stable for either type until allocations are changed. Corresponds to the JSON property `shardBy` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/appengine_v1beta4/classes.rb, line 1903
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/appengine_v1beta4/classes.rb, line 1908
def update!(**args)
  @allocations = args[:allocations] if args.key?(:allocations)
  @shard_by = args[:shard_by] if args.key?(:shard_by)
end