google-adwords-api 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,44 @@
1
+ #!/usr/bin/ruby
2
+ #
3
+ # Author:: api.dklimkin@gmail.com (Danial Klimkin)
4
+ #
5
+ # Copyright:: Copyright 2011, Google Inc. All Rights Reserved.
6
+ #
7
+ # License:: Licensed under the Apache License, Version 2.0 (the "License");
8
+ # you may not use this file except in compliance with the License.
9
+ # You may obtain a copy of the License at
10
+ #
11
+ # http://www.apache.org/licenses/LICENSE-2.0
12
+ #
13
+ # Unless required by applicable law or agreed to in writing, software
14
+ # distributed under the License is distributed on an "AS IS" BASIS,
15
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
16
+ # implied.
17
+ # See the License for the specific language governing permissions and
18
+ # limitations under the License.
19
+ #
20
+ # Wrapper class to handle Soap4r-specific logging to standard logger.
21
+
22
+ require 'logger'
23
+
24
+ module AdwordsApi
25
+ module Soap4r
26
+ class Soap4rLogger
27
+ # Constructor for Soap4rLogger.
28
+ #
29
+ # Args:
30
+ # - logger: a ruby logger to log to
31
+ # - log_level: default log_level for streams, defaults to INFO
32
+ #
33
+ def initialize(logger, log_level = Logger::INFO)
34
+ @logger = logger
35
+ @log_level = log_level
36
+ end
37
+
38
+ # Overload << operator to perform logging.
39
+ def << (text)
40
+ @logger.add(@log_level) {text.to_s}
41
+ end
42
+ end
43
+ end
44
+ end
@@ -0,0 +1,210 @@
1
+ #!/usr/bin/ruby
2
+ #
3
+ # Authors:: api.sgomes@gmail.com (Sérgio Gomes)
4
+ # api.jeffy@gmail.com (Jeffrey Posnick)
5
+ #
6
+ # Copyright:: Copyright 2010, Google Inc. All Rights Reserved.
7
+ #
8
+ # License:: Licensed under the Apache License, Version 2.0 (the "License");
9
+ # you may not use this file except in compliance with the License.
10
+ # You may obtain a copy of the License at
11
+ #
12
+ # http://www.apache.org/licenses/LICENSE-2.0
13
+ #
14
+ # Unless required by applicable law or agreed to in writing, software
15
+ # distributed under the License is distributed on an "AS IS" BASIS,
16
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
17
+ # implied.
18
+ # See the License for the specific language governing permissions and
19
+ # limitations under the License.
20
+ #
21
+ # Collection of small patches to soap4r, used in the client libraries.
22
+
23
+ require 'rubygems'
24
+ begin
25
+ gem 'soap4r', '=1.5.8'
26
+ rescue
27
+ require_gem 'soap4r', '=1.5.8'
28
+ end
29
+ require 'soap/soap'
30
+ require 'soap/rpc/driver'
31
+
32
+
33
+ # Fix an issue with code generation: the infamous "type collapse" bug. This
34
+ # should avoid objects with just one property, that happens to be an array, from
35
+ # being collapsed into a simple array.
36
+ module WSDL
37
+ module SOAP
38
+ class ClassDefCreator
39
+ def dump_complextype
40
+ definitions = sort_dependency(@complextypes).collect { |type|
41
+ c = create_complextypedef(@modulepath, type.name, type)
42
+ c ? c.dump : nil
43
+ }.compact.join("\n")
44
+ end
45
+
46
+ def create_complextypedef(mpath, qname, type, qualified = false)
47
+ case type.compoundtype
48
+ when :TYPE_STRUCT, :TYPE_EMPTY
49
+ create_structdef(mpath, qname, type, qualified)
50
+ when :TYPE_ARRAY
51
+ ### Patch starts here ###
52
+ create_structdef(mpath, qname, type, qualified)
53
+ #create_arraydef(mpath, qname, type)
54
+ ### Patch ends here ###
55
+ when :TYPE_SIMPLE
56
+ create_simpleclassdef(mpath, qname, type)
57
+ when :TYPE_MAP
58
+ # mapped as a general Hash
59
+ nil
60
+ else
61
+ raise RuntimeError.new(
62
+ "unknown kind of complexContent: #{type.compoundtype}")
63
+ end
64
+ end
65
+ end
66
+ end
67
+ end
68
+
69
+ module SOAP
70
+
71
+ # Fix an issue with SOAPDate. Google complains if the dates have any timezone
72
+ # info in them. There are probably better ways to fix this.
73
+ class SOAPDate
74
+
75
+ def of2tz(offset)
76
+ diffmin = offset * 24 * 60
77
+ if diffmin.zero?
78
+ ''
79
+ else
80
+ ((diffmin < 0) ? '-' : '+') << format('%02d:%02d',
81
+ (diffmin.abs / 60.0).to_i, (diffmin.abs % 60.0).to_i)
82
+ end
83
+ end
84
+ end
85
+
86
+ # Fix an issue with base64 encoded items in responses, which causes them to
87
+ # be encoded twice
88
+ module Mapping
89
+ class LiteralRegistry
90
+ def base2obj(value, klass)
91
+ v = if value.respond_to?(:data)
92
+ value.data
93
+ elsif value.respond_to?(:text)
94
+ value.text
95
+ else
96
+ nil
97
+ end
98
+ ### Patch starts here ###
99
+ if klass.to_s == 'SOAP::SOAPBase64'
100
+ v
101
+ ### Patch ends here ###
102
+ elsif value.is_a?(klass)
103
+ v
104
+ else
105
+ klass.to_data(v)
106
+ end
107
+ end
108
+ end
109
+ end
110
+
111
+ # Monkey-patching soap4r to add a callback at the Proxy level. Not exactly the
112
+ # prettiest way of doing things, but other callback levels in soap4r don't
113
+ # provide all the information we need to log.
114
+ module RPC
115
+
116
+ class CallbackHandler
117
+
118
+ # The callback handler takes a method name (the API method invoked), an
119
+ # endpoint and the message envelope. This method is meant to be overloaded
120
+ # in derived classes.
121
+ def on_callback(method_name, endpoint, envelope)
122
+ return nil
123
+ end
124
+ end
125
+
126
+ class Driver
127
+ # Use the Driver class's __attr_proxy method to declare getters and
128
+ # setters for "callbackhandler". These reference the getters and setters
129
+ # for the property with the same name in the Proxy object contained
130
+ # within driver (@proxy).
131
+ __attr_proxy :callbackhandler, true
132
+
133
+ end
134
+
135
+ class Proxy
136
+
137
+ attr_accessor :callbackhandler
138
+
139
+ # This method is a copy of the one included in soap4r, with the additions
140
+ # marked below, to enable the callback.
141
+ def call(name, *params)
142
+ # name must be used only for lookup
143
+ op_info = lookup_operation(name)
144
+ mapping_opt = create_mapping_opt
145
+ req_header = create_request_header
146
+ req_body = SOAPBody.new(
147
+ op_info.request_body(params, @mapping_registry,
148
+ @literal_mapping_registry, mapping_opt)
149
+ )
150
+ reqopt = create_encoding_opt(
151
+ :soapaction => op_info.soapaction || @soapaction,
152
+ :envelopenamespace => @options["soap.envelope.requestnamespace"],
153
+ :default_encodingstyle =>
154
+ @default_encodingstyle || op_info.request_default_encodingstyle,
155
+ :use_default_namespace =>
156
+ op_info.use_default_namespace || @use_default_namespace
157
+ )
158
+ resopt = create_encoding_opt(
159
+ :envelopenamespace => @options["soap.envelope.responsenamespace"],
160
+ :default_encodingstyle =>
161
+ @default_encodingstyle || op_info.response_default_encodingstyle
162
+ )
163
+ if reqopt[:generate_explicit_type].nil?
164
+ reqopt[:generate_explicit_type] = (op_info.request_use == :encoded)
165
+ end
166
+ if resopt[:generate_explicit_type].nil?
167
+ resopt[:generate_explicit_type] = (op_info.response_use == :encoded)
168
+ end
169
+ env = route(req_header, req_body, reqopt, resopt)
170
+ ### Patch starts here ###
171
+ if op_info.response_use.nil?
172
+ unless callbackhandler.nil?
173
+ callbackhandler.on_callback(name, @endpoint_url, env, params)
174
+ end
175
+ return nil
176
+ end
177
+ fault = false
178
+ fault_message = nil
179
+ begin
180
+ unless env
181
+ fault = true
182
+ fault_message = 'Empty SOAP response'
183
+ raise EmptyResponseError
184
+ end
185
+ receive_headers(env.header)
186
+ begin
187
+ check_fault(env.body)
188
+ rescue ::SOAP::FaultError => e
189
+ fault = true
190
+ fault_message = e.to_s
191
+ op_info.raise_fault(e, @mapping_registry, @literal_mapping_registry)
192
+ end
193
+ ensure
194
+ unless callbackhandler.nil?
195
+ callbackhandler.on_callback(name, @endpoint_url, env, params, fault,
196
+ fault_message)
197
+ end
198
+ end
199
+ ### Patch ends here ###
200
+
201
+ if @return_response_as_xml
202
+ resopt[:response_as_xml]
203
+ else
204
+ op_info.response_obj(env.body, @mapping_registry,
205
+ @literal_mapping_registry, mapping_opt)
206
+ end
207
+ end
208
+ end
209
+ end
210
+ end
@@ -0,0 +1,148 @@
1
+ #!/usr/bin/ruby
2
+ #
3
+ # Authors:: api.sgomes@gmail.com (Sérgio Gomes)
4
+ #
5
+ # Copyright:: Copyright 2011, Google Inc. All Rights Reserved.
6
+ #
7
+ # License:: Licensed under the Apache License, Version 2.0 (the "License");
8
+ # you may not use this file except in compliance with the License.
9
+ # You may obtain a copy of the License at
10
+ #
11
+ # http://www.apache.org/licenses/LICENSE-2.0
12
+ #
13
+ # Unless required by applicable law or agreed to in writing, software
14
+ # distributed under the License is distributed on an "AS IS" BASIS,
15
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
16
+ # implied.
17
+ # See the License for the specific language governing permissions and
18
+ # limitations under the License.
19
+ #
20
+ # Handler class to process response messages for API unit usage and statistics
21
+ # information.
22
+
23
+ require 'uri'
24
+
25
+ require 'adwords_api/soap4r/soap4r_patches'
26
+
27
+ module AdwordsApi
28
+ module Soap4r
29
+
30
+ # Handler class to process response messages for API unit usage and statistics
31
+ # information.
32
+ class Soap4rResponseHandler < SOAP::RPC::CallbackHandler
33
+
34
+ # Constructor for Soap4rResponseHandler.
35
+ #
36
+ # Args:
37
+ # - parent: AdwordsApi object to which this instance should be tied
38
+ #
39
+ def initialize(parent)
40
+ @parent = parent
41
+ end
42
+
43
+ # Parses the value contained in a SOAP response header.
44
+ #
45
+ # Args:
46
+ # - header: an object representing a SOAP header
47
+ #
48
+ # Returns:
49
+ # - the value contained in the header as a string, or nil if the header is
50
+ # nil
51
+ #
52
+ def parse_header(header)
53
+ return nil if header.nil?
54
+ header_element = header
55
+ if header.instance_variable_defined?('@element')
56
+ header_element = header.element
57
+ end
58
+ return header_element.text
59
+ end
60
+
61
+ # Handles the callback method.
62
+ # Logs the request data and tracks unit usage.
63
+ #
64
+ # Args:
65
+ # - method_name: name for the operation that was invoked
66
+ # - endpoint: the enodpoint URL the request was sent to
67
+ # - envelope: the envelope for the SOAP response that was received
68
+ # - params: the parameters that were passed to the method
69
+ # - fault: whether the request resulted in a fault or not
70
+ # - fault_msg: the fault message in case of a fault (nil if none)
71
+ #
72
+ def on_callback(method_name, endpoint, envelope, params, fault = false,
73
+ fault_msg = nil)
74
+ units = nil
75
+ operations = nil
76
+ response_time = nil
77
+ request_id = nil
78
+ operators = nil
79
+ operator_count = nil
80
+
81
+ # Create a hash with the count per operator used in the request
82
+ if params and params[0] and params[0].class.to_s =~ /.*::Mutate/
83
+ if params[0].is_a?(Array) and params[0].size >= 1
84
+ operators = Hash.new(0)
85
+ params[0].each do |operation|
86
+ if operation.is_a? Hash and operation[:operator]
87
+ operators[operation[:operator].to_s] += 1
88
+ elsif operation.is_a? Hash and operation['operator']
89
+ operators[operation['operator'].to_s] += 1
90
+ elsif operation.respond_to? 'operator'
91
+ operators[operation.operator.to_s] += 1
92
+ else
93
+ operators['?'] += 1
94
+ end
95
+ end
96
+ else
97
+ if params[0].is_a? Hash and params[0][:operator]
98
+ operators[params[0][:operator].to_s] += 1
99
+ elsif params[0].is_a? Hash and params[0]['operator']
100
+ operators[params[0]['operator'].to_s] += 1
101
+ elsif params[0].respond_to? 'operator'
102
+ operators[params[0].operator.to_s] += 1
103
+ end
104
+ end
105
+ end
106
+
107
+ if operators
108
+ operator_count = operators.map { |op, num| "#{op}: #{num}" }.join(', ')
109
+ end
110
+
111
+ header = envelope.header if envelope
112
+ if header and header.key?('ResponseHeader')
113
+ header = header['ResponseHeader'].element
114
+ end
115
+
116
+ if header
117
+ @parent.mutex.synchronize do
118
+ units = parse_header(header['units'])
119
+ unless units.nil?
120
+ @parent.last_units = units.to_i
121
+ @parent.total_units = @parent.total_units + units.to_i
122
+ end
123
+
124
+ operations = parse_header(header['operations'])
125
+ response_time = parse_header(header['responseTime'])
126
+ request_id = parse_header(header['requestId'])
127
+ end
128
+ end
129
+
130
+ host = URI.parse(endpoint).host
131
+
132
+ data = "host=#{host} method=#{method_name} " +
133
+ "responseTime=#{response_time} operations=#{operations} "
134
+ data += "operators={#{operator_count}} " if operator_count
135
+ data += "units=#{units} requestId=#{request_id} "
136
+ data += "isFault=#{(!!fault).to_s} "
137
+
138
+ if fault_msg
139
+ data += "faultMessage=\"#{fault_msg}\""
140
+ else
141
+ data += "faultMessage=none"
142
+ end
143
+
144
+ @parent.logger.info(data)
145
+ end
146
+ end
147
+ end
148
+ end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-adwords-api
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 21
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 2
9
- - 0
10
- version: 0.2.0
9
+ - 1
10
+ version: 0.2.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Sergio Gomes
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-06-24 00:00:00 +04:00
18
+ date: 2011-08-02 00:00:00 +04:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -58,12 +58,12 @@ dependencies:
58
58
  requirements:
59
59
  - - ~>
60
60
  - !ruby/object:Gem::Version
61
- hash: 15
61
+ hash: 11
62
62
  segments:
63
63
  - 0
64
- - 4
64
+ - 5
65
65
  - 0
66
- version: 0.4.0
66
+ version: 0.5.0
67
67
  type: :runtime
68
68
  version_requirements: *id003
69
69
  description: |-
@@ -86,542 +86,550 @@ extra_rdoc_files:
86
86
  files:
87
87
  - adwords_api.yml
88
88
  - Rakefile
89
- - lib/adwords_api/v201101/UserListServiceWrapper.rb
90
- - lib/adwords_api/v201101/UserListServiceMappingRegistry.rb
91
- - lib/adwords_api/v201101/UserListServiceDriver.rb
92
- - lib/adwords_api/v201101/UserListService.rb
93
- - lib/adwords_api/v201101/TrafficEstimatorServiceWrapper.rb
94
- - lib/adwords_api/v201101/TrafficEstimatorServiceMappingRegistry.rb
95
- - lib/adwords_api/v201101/TrafficEstimatorServiceDriver.rb
96
- - lib/adwords_api/v201101/TrafficEstimatorService.rb
97
- - lib/adwords_api/v201101/TargetingIdeaServiceWrapper.rb
98
- - lib/adwords_api/v201101/TargetingIdeaServiceMappingRegistry.rb
99
- - lib/adwords_api/v201101/TargetingIdeaServiceDriver.rb
100
- - lib/adwords_api/v201101/TargetingIdeaService.rb
101
- - lib/adwords_api/v201101/ServicedAccountServiceWrapper.rb
102
- - lib/adwords_api/v201101/ServicedAccountServiceMappingRegistry.rb
103
- - lib/adwords_api/v201101/ServicedAccountServiceDriver.rb
104
- - lib/adwords_api/v201101/ServicedAccountService.rb
105
- - lib/adwords_api/v201101/ReportDefinitionServiceWrapper.rb
106
- - lib/adwords_api/v201101/ReportDefinitionServiceMappingRegistry.rb
107
- - lib/adwords_api/v201101/ReportDefinitionServiceDriver.rb
108
- - lib/adwords_api/v201101/ReportDefinitionService.rb
109
- - lib/adwords_api/v201101/MediaServiceWrapper.rb
110
- - lib/adwords_api/v201101/MediaServiceMappingRegistry.rb
111
- - lib/adwords_api/v201101/MediaServiceDriver.rb
112
- - lib/adwords_api/v201101/InfoServiceWrapper.rb
113
- - lib/adwords_api/v201101/InfoServiceMappingRegistry.rb
114
- - lib/adwords_api/v201101/InfoServiceDriver.rb
115
- - lib/adwords_api/v201101/MediaService.rb
116
- - lib/adwords_api/v201101/InfoService.rb
117
- - lib/adwords_api/v201101/GeoLocationServiceWrapper.rb
118
- - lib/adwords_api/v201101/GeoLocationServiceMappingRegistry.rb
119
- - lib/adwords_api/v201101/GeoLocationServiceDriver.rb
120
- - lib/adwords_api/v201101/GeoLocationService.rb
121
- - lib/adwords_api/v201101/ExperimentServiceWrapper.rb
122
- - lib/adwords_api/v201101/ExperimentServiceMappingRegistry.rb
123
- - lib/adwords_api/v201101/ExperimentServiceDriver.rb
124
- - lib/adwords_api/v201101/ExperimentService.rb
125
- - lib/adwords_api/v201101/DataServiceWrapper.rb
126
- - lib/adwords_api/v201101/DataServiceMappingRegistry.rb
127
- - lib/adwords_api/v201101/DataServiceDriver.rb
128
- - lib/adwords_api/v201101/DataService.rb
129
- - lib/adwords_api/v201101/CustomerSyncServiceWrapper.rb
130
- - lib/adwords_api/v201101/CustomerSyncServiceMappingRegistry.rb
131
- - lib/adwords_api/v201101/CustomerSyncServiceDriver.rb
132
- - lib/adwords_api/v201101/CustomerSyncService.rb
133
- - lib/adwords_api/v201101/ConversionTrackerServiceWrapper.rb
134
- - lib/adwords_api/v201101/ConversionTrackerServiceMappingRegistry.rb
135
- - lib/adwords_api/v201101/ConversionTrackerServiceDriver.rb
136
- - lib/adwords_api/v201101/ConversionTrackerService.rb
137
- - lib/adwords_api/v201101/CampaignTargetServiceWrapper.rb
138
- - lib/adwords_api/v201101/CampaignTargetServiceMappingRegistry.rb
139
- - lib/adwords_api/v201101/CampaignTargetServiceDriver.rb
140
- - lib/adwords_api/v201101/CampaignTargetService.rb
141
- - lib/adwords_api/v201101/CampaignServiceWrapper.rb
142
- - lib/adwords_api/v201101/CampaignServiceMappingRegistry.rb
143
- - lib/adwords_api/v201101/CampaignServiceDriver.rb
144
- - lib/adwords_api/v201101/CampaignService.rb
145
- - lib/adwords_api/v201101/CampaignCriterionServiceWrapper.rb
146
- - lib/adwords_api/v201101/CampaignCriterionServiceMappingRegistry.rb
147
- - lib/adwords_api/v201101/CampaignCriterionServiceDriver.rb
148
- - lib/adwords_api/v201101/CampaignCriterionService.rb
149
- - lib/adwords_api/v201101/CampaignAdExtensionServiceWrapper.rb
150
- - lib/adwords_api/v201101/CampaignAdExtensionServiceMappingRegistry.rb
151
- - lib/adwords_api/v201101/CampaignAdExtensionServiceDriver.rb
152
- - lib/adwords_api/v201101/CampaignAdExtensionService.rb
153
- - lib/adwords_api/v201101/BulkOpportunityServiceWrapper.rb
154
- - lib/adwords_api/v201101/BulkOpportunityServiceMappingRegistry.rb
155
- - lib/adwords_api/v201101/BulkOpportunityServiceDriver.rb
156
- - lib/adwords_api/v201101/BulkOpportunityService.rb
157
- - lib/adwords_api/v201101/BulkMutateJobServiceWrapper.rb
158
- - lib/adwords_api/v201101/BulkMutateJobServiceMappingRegistry.rb
159
- - lib/adwords_api/v201101/BulkMutateJobServiceDriver.rb
160
- - lib/adwords_api/v201101/BulkMutateJobService.rb
161
- - lib/adwords_api/v201101/AlertServiceWrapper.rb
162
- - lib/adwords_api/v201101/AlertServiceMappingRegistry.rb
163
- - lib/adwords_api/v201101/AlertServiceDriver.rb
164
- - lib/adwords_api/v201101/AlertService.rb
165
- - lib/adwords_api/v201101/AdParamServiceWrapper.rb
166
- - lib/adwords_api/v201101/AdParamServiceMappingRegistry.rb
167
- - lib/adwords_api/v201101/AdParamServiceDriver.rb
168
- - lib/adwords_api/v201101/AdParamService.rb
169
- - lib/adwords_api/v201101/AdGroupServiceWrapper.rb
170
- - lib/adwords_api/v201101/AdGroupServiceMappingRegistry.rb
171
- - lib/adwords_api/v201101/AdGroupServiceDriver.rb
172
- - lib/adwords_api/v201101/AdGroupService.rb
173
- - lib/adwords_api/v201101/AdGroupCriterionServiceWrapper.rb
174
- - lib/adwords_api/v201101/AdGroupCriterionServiceMappingRegistry.rb
175
- - lib/adwords_api/v201101/AdGroupCriterionServiceDriver.rb
176
- - lib/adwords_api/v201101/AdGroupCriterionService.rb
177
- - lib/adwords_api/v201101/AdGroupAdServiceWrapper.rb
178
- - lib/adwords_api/v201101/AdGroupAdServiceMappingRegistry.rb
179
- - lib/adwords_api/v201101/AdGroupAdServiceDriver.rb
180
- - lib/adwords_api/v201101/AdGroupAdService.rb
181
- - lib/adwords_api/v201101/AdExtensionOverrideServiceWrapper.rb
182
- - lib/adwords_api/v201101/AdExtensionOverrideServiceMappingRegistry.rb
183
- - lib/adwords_api/v201101/AdExtensionOverrideServiceDriver.rb
184
- - lib/adwords_api/v201101/AdExtensionOverrideService.rb
185
- - lib/adwords_api/v201008/UserListServiceWrapper.rb
186
- - lib/adwords_api/v201008/UserListServiceMappingRegistry.rb
187
- - lib/adwords_api/v201008/UserListServiceDriver.rb
188
- - lib/adwords_api/v201008/UserListService.rb
189
- - lib/adwords_api/v201008/TrafficEstimatorServiceWrapper.rb
190
- - lib/adwords_api/v201008/TrafficEstimatorServiceMappingRegistry.rb
191
- - lib/adwords_api/v201008/TrafficEstimatorServiceDriver.rb
192
- - lib/adwords_api/v201008/TrafficEstimatorService.rb
193
- - lib/adwords_api/v201008/TargetingIdeaServiceWrapper.rb
194
- - lib/adwords_api/v201008/TargetingIdeaServiceMappingRegistry.rb
195
- - lib/adwords_api/v201008/TargetingIdeaServiceDriver.rb
196
- - lib/adwords_api/v201008/TargetingIdeaService.rb
197
- - lib/adwords_api/v201008/ServicedAccountServiceWrapper.rb
198
- - lib/adwords_api/v201008/ServicedAccountServiceMappingRegistry.rb
199
- - lib/adwords_api/v201008/ServicedAccountServiceDriver.rb
200
- - lib/adwords_api/v201008/ReportDefinitionServiceWrapper.rb
89
+ - lib/adwords_api.rb
90
+ - lib/adwords_api/single_header_handler.rb
91
+ - lib/adwords_api/v201008/AdExtensionOverrideServiceMappingRegistry.rb
92
+ - lib/adwords_api/v201008/ExperimentService.rb
201
93
  - lib/adwords_api/v201008/ReportDefinitionServiceMappingRegistry.rb
202
- - lib/adwords_api/v201008/ServicedAccountService.rb
203
- - lib/adwords_api/v201008/ReportDefinitionServiceDriver.rb
204
- - lib/adwords_api/v201008/ReportDefinitionService.rb
205
- - lib/adwords_api/v201008/MediaServiceWrapper.rb
206
- - lib/adwords_api/v201008/MediaServiceMappingRegistry.rb
94
+ - lib/adwords_api/v201008/ServicedAccountServiceMappingRegistry.rb
95
+ - lib/adwords_api/v201008/ServicedAccountServiceWrapper.rb
96
+ - lib/adwords_api/v201008/CampaignServiceWrapper.rb
97
+ - lib/adwords_api/v201008/AdExtensionOverrideServiceWrapper.rb
98
+ - lib/adwords_api/v201008/BidLandscapeServiceMappingRegistry.rb
207
99
  - lib/adwords_api/v201008/MediaServiceDriver.rb
208
- - lib/adwords_api/v201008/MediaService.rb
100
+ - lib/adwords_api/v201008/AdGroupAdServiceDriver.rb
101
+ - lib/adwords_api/v201008/CampaignCriterionService.rb
102
+ - lib/adwords_api/v201008/AdGroupCriterionService.rb
209
103
  - lib/adwords_api/v201008/InfoServiceWrapper.rb
210
- - lib/adwords_api/v201008/InfoServiceMappingRegistry.rb
211
- - lib/adwords_api/v201008/InfoServiceDriver.rb
104
+ - lib/adwords_api/v201008/GeoLocationServiceDriver.rb
105
+ - lib/adwords_api/v201008/AdGroupCriterionServiceMappingRegistry.rb
106
+ - lib/adwords_api/v201008/AdGroupServiceDriver.rb
107
+ - lib/adwords_api/v201008/AdExtensionOverrideService.rb
108
+ - lib/adwords_api/v201008/CustomerSyncServiceWrapper.rb
212
109
  - lib/adwords_api/v201008/InfoService.rb
213
- - lib/adwords_api/v201008/GeoLocationServiceWrapper.rb
110
+ - lib/adwords_api/v201008/ServicedAccountServiceDriver.rb
111
+ - lib/adwords_api/v201008/AlertService.rb
112
+ - lib/adwords_api/v201008/BulkMutateJobServiceWrapper.rb
214
113
  - lib/adwords_api/v201008/GeoLocationServiceMappingRegistry.rb
215
- - lib/adwords_api/v201008/GeoLocationServiceDriver.rb
216
- - lib/adwords_api/v201008/GeoLocationService.rb
114
+ - lib/adwords_api/v201008/TrafficEstimatorServiceDriver.rb
115
+ - lib/adwords_api/v201008/AdGroupServiceWrapper.rb
116
+ - lib/adwords_api/v201008/MediaService.rb
117
+ - lib/adwords_api/v201008/CampaignAdExtensionService.rb
118
+ - lib/adwords_api/v201008/AdGroupCriterionServiceWrapper.rb
217
119
  - lib/adwords_api/v201008/ExperimentServiceWrapper.rb
120
+ - lib/adwords_api/v201008/AdParamServiceWrapper.rb
121
+ - lib/adwords_api/v201008/UserListServiceMappingRegistry.rb
122
+ - lib/adwords_api/v201008/BidLandscapeService.rb
123
+ - lib/adwords_api/v201008/AdGroupCriterionServiceDriver.rb
124
+ - lib/adwords_api/v201008/CampaignCriterionServiceDriver.rb
125
+ - lib/adwords_api/v201008/BidLandscapeServiceWrapper.rb
126
+ - lib/adwords_api/v201008/CampaignServiceDriver.rb
218
127
  - lib/adwords_api/v201008/ExperimentServiceMappingRegistry.rb
128
+ - lib/adwords_api/v201008/CampaignServiceMappingRegistry.rb
129
+ - lib/adwords_api/v201008/UserListService.rb
130
+ - lib/adwords_api/v201008/UserListServiceDriver.rb
131
+ - lib/adwords_api/v201008/TrafficEstimatorService.rb
132
+ - lib/adwords_api/v201008/ReportDefinitionServiceDriver.rb
133
+ - lib/adwords_api/v201008/AdGroupServiceMappingRegistry.rb
134
+ - lib/adwords_api/v201008/ReportDefinitionServiceWrapper.rb
135
+ - lib/adwords_api/v201008/BidLandscapeServiceDriver.rb
136
+ - lib/adwords_api/v201008/TargetingIdeaService.rb
137
+ - lib/adwords_api/v201008/TargetingIdeaServiceDriver.rb
138
+ - lib/adwords_api/v201008/AlertServiceDriver.rb
139
+ - lib/adwords_api/v201008/TrafficEstimatorServiceWrapper.rb
140
+ - lib/adwords_api/v201008/TargetingIdeaServiceMappingRegistry.rb
219
141
  - lib/adwords_api/v201008/ExperimentServiceDriver.rb
220
- - lib/adwords_api/v201008/ExperimentService.rb
221
- - lib/adwords_api/v201008/CustomerSyncServiceWrapper.rb
222
- - lib/adwords_api/v201008/CustomerSyncServiceMappingRegistry.rb
142
+ - lib/adwords_api/v201008/CampaignTargetService.rb
143
+ - lib/adwords_api/v201008/CampaignCriterionServiceWrapper.rb
144
+ - lib/adwords_api/v201008/AdGroupAdServiceWrapper.rb
145
+ - lib/adwords_api/v201008/ReportDefinitionService.rb
146
+ - lib/adwords_api/v201008/InfoServiceMappingRegistry.rb
147
+ - lib/adwords_api/v201008/CampaignAdExtensionServiceDriver.rb
148
+ - lib/adwords_api/v201008/AdGroupAdServiceMappingRegistry.rb
149
+ - lib/adwords_api/v201008/BulkMutateJobServiceMappingRegistry.rb
150
+ - lib/adwords_api/v201008/TargetingIdeaServiceWrapper.rb
223
151
  - lib/adwords_api/v201008/CustomerSyncServiceDriver.rb
224
- - lib/adwords_api/v201008/CustomerSyncService.rb
225
- - lib/adwords_api/v201008/CampaignTargetServiceWrapper.rb
226
152
  - lib/adwords_api/v201008/CampaignTargetServiceMappingRegistry.rb
153
+ - lib/adwords_api/v201008/AdGroupService.rb
154
+ - lib/adwords_api/v201008/CustomerSyncServiceMappingRegistry.rb
227
155
  - lib/adwords_api/v201008/CampaignTargetServiceDriver.rb
228
- - lib/adwords_api/v201008/CampaignTargetService.rb
229
- - lib/adwords_api/v201008/CampaignServiceWrapper.rb
230
- - lib/adwords_api/v201008/CampaignServiceMappingRegistry.rb
231
- - lib/adwords_api/v201008/CampaignServiceDriver.rb
156
+ - lib/adwords_api/v201008/CampaignAdExtensionServiceMappingRegistry.rb
157
+ - lib/adwords_api/v201008/InfoServiceDriver.rb
232
158
  - lib/adwords_api/v201008/CampaignService.rb
233
- - lib/adwords_api/v201008/CampaignCriterionServiceWrapper.rb
234
- - lib/adwords_api/v201008/CampaignCriterionServiceMappingRegistry.rb
235
- - lib/adwords_api/v201008/CampaignCriterionServiceDriver.rb
236
- - lib/adwords_api/v201008/CampaignCriterionService.rb
159
+ - lib/adwords_api/v201008/AdExtensionOverrideServiceDriver.rb
160
+ - lib/adwords_api/v201008/UserListServiceWrapper.rb
237
161
  - lib/adwords_api/v201008/CampaignAdExtensionServiceWrapper.rb
238
- - lib/adwords_api/v201008/CampaignAdExtensionServiceMappingRegistry.rb
239
- - lib/adwords_api/v201008/CampaignAdExtensionServiceDriver.rb
240
- - lib/adwords_api/v201008/CampaignAdExtensionService.rb
241
- - lib/adwords_api/v201008/BulkMutateJobServiceWrapper.rb
242
- - lib/adwords_api/v201008/BulkMutateJobServiceMappingRegistry.rb
243
- - lib/adwords_api/v201008/BulkMutateJobServiceDriver.rb
244
162
  - lib/adwords_api/v201008/BulkMutateJobService.rb
245
- - lib/adwords_api/v201008/BidLandscapeServiceWrapper.rb
246
- - lib/adwords_api/v201008/BidLandscapeServiceMappingRegistry.rb
247
- - lib/adwords_api/v201008/BidLandscapeServiceDriver.rb
248
- - lib/adwords_api/v201008/BidLandscapeService.rb
249
163
  - lib/adwords_api/v201008/AlertServiceWrapper.rb
250
164
  - lib/adwords_api/v201008/AlertServiceMappingRegistry.rb
251
- - lib/adwords_api/v201008/AlertServiceDriver.rb
252
- - lib/adwords_api/v201008/AlertService.rb
253
- - lib/adwords_api/v201008/AdParamServiceWrapper.rb
254
- - lib/adwords_api/v201008/AdParamServiceMappingRegistry.rb
165
+ - lib/adwords_api/v201008/AdGroupAdService.rb
166
+ - lib/adwords_api/v201008/CampaignTargetServiceWrapper.rb
255
167
  - lib/adwords_api/v201008/AdParamServiceDriver.rb
168
+ - lib/adwords_api/v201008/MediaServiceMappingRegistry.rb
169
+ - lib/adwords_api/v201008/CustomerSyncService.rb
170
+ - lib/adwords_api/v201008/GeoLocationServiceWrapper.rb
256
171
  - lib/adwords_api/v201008/AdParamService.rb
257
- - lib/adwords_api/v201008/AdGroupServiceWrapper.rb
258
- - lib/adwords_api/v201008/AdGroupServiceMappingRegistry.rb
259
- - lib/adwords_api/v201008/AdGroupServiceDriver.rb
260
- - lib/adwords_api/v201008/AdGroupService.rb
261
- - lib/adwords_api/v201008/AdGroupCriterionServiceWrapper.rb
262
- - lib/adwords_api/v201008/AdGroupCriterionServiceMappingRegistry.rb
263
- - lib/adwords_api/v201008/AdGroupCriterionServiceDriver.rb
264
- - lib/adwords_api/v201008/AdGroupCriterionService.rb
265
- - lib/adwords_api/v201008/AdGroupAdServiceWrapper.rb
266
- - lib/adwords_api/v201008/AdGroupAdServiceMappingRegistry.rb
267
- - lib/adwords_api/v201008/AdGroupAdServiceDriver.rb
268
- - lib/adwords_api/v201008/AdGroupAdService.rb
269
- - lib/adwords_api/v201008/AdExtensionOverrideServiceWrapper.rb
270
- - lib/adwords_api/v201008/AdExtensionOverrideServiceMappingRegistry.rb
271
- - lib/adwords_api/v201008/AdExtensionOverrideServiceDriver.rb
272
- - lib/adwords_api/v201008/AdExtensionOverrideService.rb
273
- - lib/adwords_api/v201003/TargetingIdeaServiceWrapper.rb
274
- - lib/adwords_api/v201003/TargetingIdeaServiceMappingRegistry.rb
275
- - lib/adwords_api/v201003/TargetingIdeaServiceDriver.rb
276
- - lib/adwords_api/v201003/TargetingIdeaService.rb
277
- - lib/adwords_api/v201003/ReportDefinitionServiceWrapper.rb
278
- - lib/adwords_api/v201003/ReportDefinitionServiceMappingRegistry.rb
279
- - lib/adwords_api/v201003/ReportDefinitionServiceDriver.rb
280
- - lib/adwords_api/v201003/ReportDefinitionService.rb
281
- - lib/adwords_api/v201003/MediaServiceWrapper.rb
282
- - lib/adwords_api/v201003/MediaServiceMappingRegistry.rb
283
- - lib/adwords_api/v201003/MediaServiceDriver.rb
284
- - lib/adwords_api/v201003/MediaService.rb
285
- - lib/adwords_api/v201003/InfoServiceWrapper.rb
286
- - lib/adwords_api/v201003/InfoServiceMappingRegistry.rb
287
- - lib/adwords_api/v201003/InfoServiceDriver.rb
288
- - lib/adwords_api/v201003/InfoService.rb
289
- - lib/adwords_api/v201003/GeoLocationServiceWrapper.rb
290
- - lib/adwords_api/v201003/GeoLocationServiceMappingRegistry.rb
291
- - lib/adwords_api/v201003/GeoLocationServiceDriver.rb
292
- - lib/adwords_api/v201003/GeoLocationService.rb
293
- - lib/adwords_api/v201003/CampaignTargetServiceWrapper.rb
294
- - lib/adwords_api/v201003/CampaignTargetServiceMappingRegistry.rb
295
- - lib/adwords_api/v201003/CampaignTargetServiceDriver.rb
296
- - lib/adwords_api/v201003/CampaignTargetService.rb
297
- - lib/adwords_api/v201003/CampaignServiceWrapper.rb
298
- - lib/adwords_api/v201003/CampaignServiceMappingRegistry.rb
299
- - lib/adwords_api/v201003/CampaignServiceDriver.rb
300
- - lib/adwords_api/v201003/CampaignService.rb
301
- - lib/adwords_api/v201003/CampaignCriterionServiceWrapper.rb
302
- - lib/adwords_api/v201003/CampaignCriterionServiceMappingRegistry.rb
303
- - lib/adwords_api/v201003/CampaignCriterionServiceDriver.rb
304
- - lib/adwords_api/v201003/CampaignCriterionService.rb
305
- - lib/adwords_api/v201003/CampaignAdExtensionServiceWrapper.rb
306
- - lib/adwords_api/v201003/CampaignAdExtensionServiceMappingRegistry.rb
307
- - lib/adwords_api/v201003/CampaignAdExtensionServiceDriver.rb
308
- - lib/adwords_api/v201003/CampaignAdExtensionService.rb
309
- - lib/adwords_api/v201003/BulkMutateJobServiceWrapper.rb
310
- - lib/adwords_api/v201003/BulkMutateJobServiceMappingRegistry.rb
311
- - lib/adwords_api/v201003/BulkMutateJobServiceDriver.rb
312
- - lib/adwords_api/v201003/BulkMutateJobService.rb
313
- - lib/adwords_api/v201003/BidLandscapeServiceWrapper.rb
314
- - lib/adwords_api/v201003/BidLandscapeServiceMappingRegistry.rb
315
- - lib/adwords_api/v201003/BidLandscapeServiceDriver.rb
316
- - lib/adwords_api/v201003/BidLandscapeService.rb
317
- - lib/adwords_api/v201003/AdParamServiceWrapper.rb
318
- - lib/adwords_api/v201003/AdParamServiceMappingRegistry.rb
319
- - lib/adwords_api/v201003/AdParamServiceDriver.rb
320
- - lib/adwords_api/v201003/AdParamService.rb
321
- - lib/adwords_api/v201003/AdGroupServiceWrapper.rb
322
- - lib/adwords_api/v201003/AdGroupServiceMappingRegistry.rb
323
- - lib/adwords_api/v201003/AdGroupServiceDriver.rb
324
- - lib/adwords_api/v201003/AdGroupService.rb
325
- - lib/adwords_api/v201003/AdGroupCriterionServiceWrapper.rb
326
- - lib/adwords_api/v201003/AdGroupCriterionServiceMappingRegistry.rb
327
- - lib/adwords_api/v201003/AdGroupCriterionServiceDriver.rb
328
- - lib/adwords_api/v201003/AdGroupCriterionService.rb
329
- - lib/adwords_api/v201003/AdGroupAdServiceWrapper.rb
330
- - lib/adwords_api/v201003/AdGroupAdServiceMappingRegistry.rb
331
- - lib/adwords_api/v201003/AdGroupAdServiceDriver.rb
332
- - lib/adwords_api/v201003/AdGroupAdService.rb
333
- - lib/adwords_api/v201003/AdExtensionOverrideServiceWrapper.rb
334
- - lib/adwords_api/v201003/AdExtensionOverrideServiceMappingRegistry.rb
335
- - lib/adwords_api/v201003/AdExtensionOverrideServiceDriver.rb
336
- - lib/adwords_api/v201003/AdExtensionOverrideService.rb
337
- - lib/adwords_api/v200909/TargetingIdeaServiceWrapper.rb
338
- - lib/adwords_api/v200909/TargetingIdeaServiceMappingRegistry.rb
339
- - lib/adwords_api/v200909/TargetingIdeaServiceDriver.rb
340
- - lib/adwords_api/v200909/TargetingIdeaService.rb
172
+ - lib/adwords_api/v201008/AdParamServiceMappingRegistry.rb
173
+ - lib/adwords_api/v201008/GeoLocationService.rb
174
+ - lib/adwords_api/v201008/BulkMutateJobServiceDriver.rb
175
+ - lib/adwords_api/v201008/CampaignCriterionServiceMappingRegistry.rb
176
+ - lib/adwords_api/v201008/ServicedAccountService.rb
177
+ - lib/adwords_api/v201008/TrafficEstimatorServiceMappingRegistry.rb
178
+ - lib/adwords_api/v201008/MediaServiceWrapper.rb
179
+ - lib/adwords_api/nested_header_handler.rb
180
+ - lib/adwords_api/v200909/AdExtensionOverrideServiceMappingRegistry.rb
181
+ - lib/adwords_api/v200909/CampaignServiceWrapper.rb
182
+ - lib/adwords_api/v200909/AdExtensionOverrideServiceWrapper.rb
183
+ - lib/adwords_api/v200909/AdGroupAdServiceDriver.rb
184
+ - lib/adwords_api/v200909/CampaignCriterionService.rb
185
+ - lib/adwords_api/v200909/AdGroupCriterionService.rb
341
186
  - lib/adwords_api/v200909/InfoServiceWrapper.rb
342
- - lib/adwords_api/v200909/InfoServiceMappingRegistry.rb
343
- - lib/adwords_api/v200909/InfoServiceDriver.rb
187
+ - lib/adwords_api/v200909/GeoLocationServiceDriver.rb
188
+ - lib/adwords_api/v200909/AdGroupCriterionServiceMappingRegistry.rb
189
+ - lib/adwords_api/v200909/AdGroupServiceDriver.rb
190
+ - lib/adwords_api/v200909/AdExtensionOverrideService.rb
344
191
  - lib/adwords_api/v200909/InfoService.rb
345
- - lib/adwords_api/v200909/GeoLocationServiceWrapper.rb
192
+ - lib/adwords_api/v200909/BulkMutateJobServiceWrapper.rb
346
193
  - lib/adwords_api/v200909/GeoLocationServiceMappingRegistry.rb
347
- - lib/adwords_api/v200909/GeoLocationServiceDriver.rb
348
- - lib/adwords_api/v200909/GeoLocationService.rb
349
- - lib/adwords_api/v200909/CampaignTargetServiceWrapper.rb
350
- - lib/adwords_api/v200909/CampaignTargetServiceMappingRegistry.rb
351
- - lib/adwords_api/v200909/CampaignTargetServiceDriver.rb
352
- - lib/adwords_api/v200909/CampaignTargetService.rb
353
- - lib/adwords_api/v200909/CampaignServiceWrapper.rb
354
- - lib/adwords_api/v200909/CampaignServiceMappingRegistry.rb
194
+ - lib/adwords_api/v200909/AdGroupServiceWrapper.rb
195
+ - lib/adwords_api/v200909/CampaignAdExtensionService.rb
196
+ - lib/adwords_api/v200909/AdGroupCriterionServiceWrapper.rb
197
+ - lib/adwords_api/v200909/AdParamServiceWrapper.rb
198
+ - lib/adwords_api/v200909/AdGroupCriterionServiceDriver.rb
199
+ - lib/adwords_api/v200909/CampaignCriterionServiceDriver.rb
355
200
  - lib/adwords_api/v200909/CampaignServiceDriver.rb
356
- - lib/adwords_api/v200909/CampaignService.rb
201
+ - lib/adwords_api/v200909/CampaignServiceMappingRegistry.rb
202
+ - lib/adwords_api/v200909/AdGroupServiceMappingRegistry.rb
203
+ - lib/adwords_api/v200909/TargetingIdeaService.rb
204
+ - lib/adwords_api/v200909/TargetingIdeaServiceDriver.rb
205
+ - lib/adwords_api/v200909/TargetingIdeaServiceMappingRegistry.rb
206
+ - lib/adwords_api/v200909/CampaignTargetService.rb
357
207
  - lib/adwords_api/v200909/CampaignCriterionServiceWrapper.rb
358
- - lib/adwords_api/v200909/CampaignCriterionServiceMappingRegistry.rb
359
- - lib/adwords_api/v200909/CampaignCriterionServiceDriver.rb
360
- - lib/adwords_api/v200909/CampaignCriterionService.rb
361
- - lib/adwords_api/v200909/CampaignAdExtensionServiceWrapper.rb
362
- - lib/adwords_api/v200909/CampaignAdExtensionServiceMappingRegistry.rb
208
+ - lib/adwords_api/v200909/AdGroupAdServiceWrapper.rb
209
+ - lib/adwords_api/v200909/InfoServiceMappingRegistry.rb
363
210
  - lib/adwords_api/v200909/CampaignAdExtensionServiceDriver.rb
364
- - lib/adwords_api/v200909/CampaignAdExtensionService.rb
365
- - lib/adwords_api/v200909/BulkMutateJobServiceWrapper.rb
211
+ - lib/adwords_api/v200909/AdGroupAdServiceMappingRegistry.rb
366
212
  - lib/adwords_api/v200909/BulkMutateJobServiceMappingRegistry.rb
367
- - lib/adwords_api/v200909/BulkMutateJobServiceDriver.rb
213
+ - lib/adwords_api/v200909/TargetingIdeaServiceWrapper.rb
214
+ - lib/adwords_api/v200909/CampaignTargetServiceMappingRegistry.rb
215
+ - lib/adwords_api/v200909/AdGroupService.rb
216
+ - lib/adwords_api/v200909/CampaignTargetServiceDriver.rb
217
+ - lib/adwords_api/v200909/CampaignAdExtensionServiceMappingRegistry.rb
218
+ - lib/adwords_api/v200909/InfoServiceDriver.rb
219
+ - lib/adwords_api/v200909/CampaignService.rb
220
+ - lib/adwords_api/v200909/AdExtensionOverrideServiceDriver.rb
221
+ - lib/adwords_api/v200909/CampaignAdExtensionServiceWrapper.rb
368
222
  - lib/adwords_api/v200909/BulkMutateJobService.rb
369
- - lib/adwords_api/v200909/AdParamServiceWrapper.rb
370
- - lib/adwords_api/v200909/AdParamServiceMappingRegistry.rb
223
+ - lib/adwords_api/v200909/AdGroupAdService.rb
224
+ - lib/adwords_api/v200909/CampaignTargetServiceWrapper.rb
371
225
  - lib/adwords_api/v200909/AdParamServiceDriver.rb
226
+ - lib/adwords_api/v200909/GeoLocationServiceWrapper.rb
372
227
  - lib/adwords_api/v200909/AdParamService.rb
373
- - lib/adwords_api/v200909/AdGroupServiceWrapper.rb
374
- - lib/adwords_api/v200909/AdGroupServiceMappingRegistry.rb
375
- - lib/adwords_api/v200909/AdGroupServiceDriver.rb
376
- - lib/adwords_api/v200909/AdGroupService.rb
377
- - lib/adwords_api/v200909/AdGroupCriterionServiceWrapper.rb
378
- - lib/adwords_api/v200909/AdGroupCriterionServiceMappingRegistry.rb
379
- - lib/adwords_api/v200909/AdGroupCriterionServiceDriver.rb
380
- - lib/adwords_api/v200909/AdGroupCriterionService.rb
381
- - lib/adwords_api/v200909/AdGroupAdServiceWrapper.rb
382
- - lib/adwords_api/v200909/AdGroupAdServiceMappingRegistry.rb
383
- - lib/adwords_api/v200909/AdGroupAdServiceDriver.rb
384
- - lib/adwords_api/v200909/AdGroupAdService.rb
385
- - lib/adwords_api/v200909/AdExtensionOverrideServiceWrapper.rb
386
- - lib/adwords_api/v200909/AdExtensionOverrideServiceMappingRegistry.rb
387
- - lib/adwords_api/v200909/AdExtensionOverrideServiceDriver.rb
388
- - lib/adwords_api/v200909/AdExtensionOverrideService.rb
389
- - lib/adwords_api/v13/TrafficEstimatorServiceWrapper.rb
390
- - lib/adwords_api/v13/TrafficEstimatorServiceMappingRegistry.rb
228
+ - lib/adwords_api/v200909/AdParamServiceMappingRegistry.rb
229
+ - lib/adwords_api/v200909/GeoLocationService.rb
230
+ - lib/adwords_api/v200909/BulkMutateJobServiceDriver.rb
231
+ - lib/adwords_api/v200909/CampaignCriterionServiceMappingRegistry.rb
232
+ - lib/adwords_api/utils.rb
233
+ - lib/adwords_api/extensions.rb
234
+ - lib/adwords_api/api_config.rb
235
+ - lib/adwords_api/v201101/AdExtensionOverrideServiceMappingRegistry.rb
236
+ - lib/adwords_api/v201101/ExperimentService.rb
237
+ - lib/adwords_api/v201101/ReportDefinitionServiceMappingRegistry.rb
238
+ - lib/adwords_api/v201101/ServicedAccountServiceMappingRegistry.rb
239
+ - lib/adwords_api/v201101/ServicedAccountServiceWrapper.rb
240
+ - lib/adwords_api/v201101/ConversionTrackerService.rb
241
+ - lib/adwords_api/v201101/CampaignServiceWrapper.rb
242
+ - lib/adwords_api/v201101/DataServiceMappingRegistry.rb
243
+ - lib/adwords_api/v201101/ConversionTrackerServiceWrapper.rb
244
+ - lib/adwords_api/v201101/AdExtensionOverrideServiceWrapper.rb
245
+ - lib/adwords_api/v201101/MediaServiceDriver.rb
246
+ - lib/adwords_api/v201101/AdGroupAdServiceDriver.rb
247
+ - lib/adwords_api/v201101/CampaignCriterionService.rb
248
+ - lib/adwords_api/v201101/AdGroupCriterionService.rb
249
+ - lib/adwords_api/v201101/DataService.rb
250
+ - lib/adwords_api/v201101/InfoServiceWrapper.rb
251
+ - lib/adwords_api/v201101/GeoLocationServiceDriver.rb
252
+ - lib/adwords_api/v201101/AdGroupCriterionServiceMappingRegistry.rb
253
+ - lib/adwords_api/v201101/AdGroupServiceDriver.rb
254
+ - lib/adwords_api/v201101/AdExtensionOverrideService.rb
255
+ - lib/adwords_api/v201101/CustomerSyncServiceWrapper.rb
256
+ - lib/adwords_api/v201101/InfoService.rb
257
+ - lib/adwords_api/v201101/ServicedAccountServiceDriver.rb
258
+ - lib/adwords_api/v201101/AlertService.rb
259
+ - lib/adwords_api/v201101/BulkMutateJobServiceWrapper.rb
260
+ - lib/adwords_api/v201101/GeoLocationServiceMappingRegistry.rb
261
+ - lib/adwords_api/v201101/TrafficEstimatorServiceDriver.rb
262
+ - lib/adwords_api/v201101/AdGroupServiceWrapper.rb
263
+ - lib/adwords_api/v201101/MediaService.rb
264
+ - lib/adwords_api/v201101/CampaignAdExtensionService.rb
265
+ - lib/adwords_api/v201101/AdGroupCriterionServiceWrapper.rb
266
+ - lib/adwords_api/v201101/ConversionTrackerServiceDriver.rb
267
+ - lib/adwords_api/v201101/ExperimentServiceWrapper.rb
268
+ - lib/adwords_api/v201101/AdParamServiceWrapper.rb
269
+ - lib/adwords_api/v201101/UserListServiceMappingRegistry.rb
270
+ - lib/adwords_api/v201101/AdGroupCriterionServiceDriver.rb
271
+ - lib/adwords_api/v201101/CampaignCriterionServiceDriver.rb
272
+ - lib/adwords_api/v201101/CampaignServiceDriver.rb
273
+ - lib/adwords_api/v201101/ExperimentServiceMappingRegistry.rb
274
+ - lib/adwords_api/v201101/BulkOpportunityServiceWrapper.rb
275
+ - lib/adwords_api/v201101/CampaignServiceMappingRegistry.rb
276
+ - lib/adwords_api/v201101/UserListService.rb
277
+ - lib/adwords_api/v201101/UserListServiceDriver.rb
278
+ - lib/adwords_api/v201101/TrafficEstimatorService.rb
279
+ - lib/adwords_api/v201101/ReportDefinitionServiceDriver.rb
280
+ - lib/adwords_api/v201101/AdGroupServiceMappingRegistry.rb
281
+ - lib/adwords_api/v201101/ReportDefinitionServiceWrapper.rb
282
+ - lib/adwords_api/v201101/TargetingIdeaService.rb
283
+ - lib/adwords_api/v201101/DataServiceWrapper.rb
284
+ - lib/adwords_api/v201101/TargetingIdeaServiceDriver.rb
285
+ - lib/adwords_api/v201101/AlertServiceDriver.rb
286
+ - lib/adwords_api/v201101/TrafficEstimatorServiceWrapper.rb
287
+ - lib/adwords_api/v201101/TargetingIdeaServiceMappingRegistry.rb
288
+ - lib/adwords_api/v201101/ExperimentServiceDriver.rb
289
+ - lib/adwords_api/v201101/CampaignTargetService.rb
290
+ - lib/adwords_api/v201101/CampaignCriterionServiceWrapper.rb
291
+ - lib/adwords_api/v201101/AdGroupAdServiceWrapper.rb
292
+ - lib/adwords_api/v201101/ReportDefinitionService.rb
293
+ - lib/adwords_api/v201101/InfoServiceMappingRegistry.rb
294
+ - lib/adwords_api/v201101/CampaignAdExtensionServiceDriver.rb
295
+ - lib/adwords_api/v201101/AdGroupAdServiceMappingRegistry.rb
296
+ - lib/adwords_api/v201101/BulkMutateJobServiceMappingRegistry.rb
297
+ - lib/adwords_api/v201101/TargetingIdeaServiceWrapper.rb
298
+ - lib/adwords_api/v201101/CustomerSyncServiceDriver.rb
299
+ - lib/adwords_api/v201101/CampaignTargetServiceMappingRegistry.rb
300
+ - lib/adwords_api/v201101/DataServiceDriver.rb
301
+ - lib/adwords_api/v201101/AdGroupService.rb
302
+ - lib/adwords_api/v201101/CustomerSyncServiceMappingRegistry.rb
303
+ - lib/adwords_api/v201101/CampaignTargetServiceDriver.rb
304
+ - lib/adwords_api/v201101/CampaignAdExtensionServiceMappingRegistry.rb
305
+ - lib/adwords_api/v201101/BulkOpportunityServiceDriver.rb
306
+ - lib/adwords_api/v201101/InfoServiceDriver.rb
307
+ - lib/adwords_api/v201101/CampaignService.rb
308
+ - lib/adwords_api/v201101/AdExtensionOverrideServiceDriver.rb
309
+ - lib/adwords_api/v201101/UserListServiceWrapper.rb
310
+ - lib/adwords_api/v201101/CampaignAdExtensionServiceWrapper.rb
311
+ - lib/adwords_api/v201101/BulkMutateJobService.rb
312
+ - lib/adwords_api/v201101/AlertServiceWrapper.rb
313
+ - lib/adwords_api/v201101/AlertServiceMappingRegistry.rb
314
+ - lib/adwords_api/v201101/AdGroupAdService.rb
315
+ - lib/adwords_api/v201101/CampaignTargetServiceWrapper.rb
316
+ - lib/adwords_api/v201101/AdParamServiceDriver.rb
317
+ - lib/adwords_api/v201101/BulkOpportunityServiceMappingRegistry.rb
318
+ - lib/adwords_api/v201101/MediaServiceMappingRegistry.rb
319
+ - lib/adwords_api/v201101/CustomerSyncService.rb
320
+ - lib/adwords_api/v201101/GeoLocationServiceWrapper.rb
321
+ - lib/adwords_api/v201101/AdParamService.rb
322
+ - lib/adwords_api/v201101/AdParamServiceMappingRegistry.rb
323
+ - lib/adwords_api/v201101/GeoLocationService.rb
324
+ - lib/adwords_api/v201101/BulkOpportunityService.rb
325
+ - lib/adwords_api/v201101/BulkMutateJobServiceDriver.rb
326
+ - lib/adwords_api/v201101/CampaignCriterionServiceMappingRegistry.rb
327
+ - lib/adwords_api/v201101/ServicedAccountService.rb
328
+ - lib/adwords_api/v201101/TrafficEstimatorServiceMappingRegistry.rb
329
+ - lib/adwords_api/v201101/ConversionTrackerServiceMappingRegistry.rb
330
+ - lib/adwords_api/v201101/MediaServiceWrapper.rb
331
+ - lib/adwords_api/v201003/AdExtensionOverrideServiceMappingRegistry.rb
332
+ - lib/adwords_api/v201003/ReportDefinitionServiceMappingRegistry.rb
333
+ - lib/adwords_api/v201003/CampaignServiceWrapper.rb
334
+ - lib/adwords_api/v201003/AdExtensionOverrideServiceWrapper.rb
335
+ - lib/adwords_api/v201003/BidLandscapeServiceMappingRegistry.rb
336
+ - lib/adwords_api/v201003/MediaServiceDriver.rb
337
+ - lib/adwords_api/v201003/AdGroupAdServiceDriver.rb
338
+ - lib/adwords_api/v201003/CampaignCriterionService.rb
339
+ - lib/adwords_api/v201003/AdGroupCriterionService.rb
340
+ - lib/adwords_api/v201003/InfoServiceWrapper.rb
341
+ - lib/adwords_api/v201003/GeoLocationServiceDriver.rb
342
+ - lib/adwords_api/v201003/AdGroupCriterionServiceMappingRegistry.rb
343
+ - lib/adwords_api/v201003/AdGroupServiceDriver.rb
344
+ - lib/adwords_api/v201003/AdExtensionOverrideService.rb
345
+ - lib/adwords_api/v201003/InfoService.rb
346
+ - lib/adwords_api/v201003/BulkMutateJobServiceWrapper.rb
347
+ - lib/adwords_api/v201003/GeoLocationServiceMappingRegistry.rb
348
+ - lib/adwords_api/v201003/AdGroupServiceWrapper.rb
349
+ - lib/adwords_api/v201003/MediaService.rb
350
+ - lib/adwords_api/v201003/CampaignAdExtensionService.rb
351
+ - lib/adwords_api/v201003/AdGroupCriterionServiceWrapper.rb
352
+ - lib/adwords_api/v201003/AdParamServiceWrapper.rb
353
+ - lib/adwords_api/v201003/BidLandscapeService.rb
354
+ - lib/adwords_api/v201003/AdGroupCriterionServiceDriver.rb
355
+ - lib/adwords_api/v201003/CampaignCriterionServiceDriver.rb
356
+ - lib/adwords_api/v201003/BidLandscapeServiceWrapper.rb
357
+ - lib/adwords_api/v201003/CampaignServiceDriver.rb
358
+ - lib/adwords_api/v201003/CampaignServiceMappingRegistry.rb
359
+ - lib/adwords_api/v201003/ReportDefinitionServiceDriver.rb
360
+ - lib/adwords_api/v201003/AdGroupServiceMappingRegistry.rb
361
+ - lib/adwords_api/v201003/ReportDefinitionServiceWrapper.rb
362
+ - lib/adwords_api/v201003/BidLandscapeServiceDriver.rb
363
+ - lib/adwords_api/v201003/TargetingIdeaService.rb
364
+ - lib/adwords_api/v201003/TargetingIdeaServiceDriver.rb
365
+ - lib/adwords_api/v201003/TargetingIdeaServiceMappingRegistry.rb
366
+ - lib/adwords_api/v201003/CampaignTargetService.rb
367
+ - lib/adwords_api/v201003/CampaignCriterionServiceWrapper.rb
368
+ - lib/adwords_api/v201003/AdGroupAdServiceWrapper.rb
369
+ - lib/adwords_api/v201003/ReportDefinitionService.rb
370
+ - lib/adwords_api/v201003/InfoServiceMappingRegistry.rb
371
+ - lib/adwords_api/v201003/CampaignAdExtensionServiceDriver.rb
372
+ - lib/adwords_api/v201003/AdGroupAdServiceMappingRegistry.rb
373
+ - lib/adwords_api/v201003/BulkMutateJobServiceMappingRegistry.rb
374
+ - lib/adwords_api/v201003/TargetingIdeaServiceWrapper.rb
375
+ - lib/adwords_api/v201003/CampaignTargetServiceMappingRegistry.rb
376
+ - lib/adwords_api/v201003/AdGroupService.rb
377
+ - lib/adwords_api/v201003/CampaignTargetServiceDriver.rb
378
+ - lib/adwords_api/v201003/CampaignAdExtensionServiceMappingRegistry.rb
379
+ - lib/adwords_api/v201003/InfoServiceDriver.rb
380
+ - lib/adwords_api/v201003/CampaignService.rb
381
+ - lib/adwords_api/v201003/AdExtensionOverrideServiceDriver.rb
382
+ - lib/adwords_api/v201003/CampaignAdExtensionServiceWrapper.rb
383
+ - lib/adwords_api/v201003/BulkMutateJobService.rb
384
+ - lib/adwords_api/v201003/AdGroupAdService.rb
385
+ - lib/adwords_api/v201003/CampaignTargetServiceWrapper.rb
386
+ - lib/adwords_api/v201003/AdParamServiceDriver.rb
387
+ - lib/adwords_api/v201003/MediaServiceMappingRegistry.rb
388
+ - lib/adwords_api/v201003/GeoLocationServiceWrapper.rb
389
+ - lib/adwords_api/v201003/AdParamService.rb
390
+ - lib/adwords_api/v201003/AdParamServiceMappingRegistry.rb
391
+ - lib/adwords_api/v201003/GeoLocationService.rb
392
+ - lib/adwords_api/v201003/BulkMutateJobServiceDriver.rb
393
+ - lib/adwords_api/v201003/CampaignCriterionServiceMappingRegistry.rb
394
+ - lib/adwords_api/v201003/MediaServiceWrapper.rb
395
+ - lib/adwords_api/soap4r/soap4r_generator.rb
396
+ - lib/adwords_api/soap4r/soap4r_response_handler.rb
397
+ - lib/adwords_api/soap4r/rake_common.rb
398
+ - lib/adwords_api/soap4r/soap4r_patches.rb
399
+ - lib/adwords_api/soap4r/soap4r_logger.rb
400
+ - lib/adwords_api/v13/ReportService.rb
391
401
  - lib/adwords_api/v13/TrafficEstimatorServiceDriver.rb
392
- - lib/adwords_api/v13/TrafficEstimatorService.rb
393
402
  - lib/adwords_api/v13/ReportServiceWrapper.rb
394
- - lib/adwords_api/v13/ReportServiceMappingRegistry.rb
395
- - lib/adwords_api/v13/ReportServiceDriver.rb
396
- - lib/adwords_api/v13/ReportService.rb
403
+ - lib/adwords_api/v13/TrafficEstimatorService.rb
404
+ - lib/adwords_api/v13/AccountService.rb
397
405
  - lib/adwords_api/v13/AccountServiceWrapper.rb
398
- - lib/adwords_api/v13/AccountServiceMappingRegistry.rb
406
+ - lib/adwords_api/v13/TrafficEstimatorServiceWrapper.rb
407
+ - lib/adwords_api/v13/ReportServiceDriver.rb
399
408
  - lib/adwords_api/v13/AccountServiceDriver.rb
400
- - lib/adwords_api/v13/AccountService.rb
401
- - lib/adwords_api/utils.rb
402
- - lib/adwords_api/soap4r_response_handler.rb
403
- - lib/adwords_api/extensions.rb
409
+ - lib/adwords_api/v13/AccountServiceMappingRegistry.rb
410
+ - lib/adwords_api/v13/ReportServiceMappingRegistry.rb
411
+ - lib/adwords_api/v13/TrafficEstimatorServiceMappingRegistry.rb
412
+ - lib/adwords_api/auth/v13_login_handler.rb
404
413
  - lib/adwords_api/errors.rb
405
414
  - lib/adwords_api/credential_handler.rb
406
- - lib/adwords_api/auth/v13_login_handler.rb
407
- - lib/adwords_api/api_config.rb
408
- - lib/adwords_api.rb
409
- - examples/v201101/upload_image.rb
410
- - examples/v201101/update_user_list.rb
411
- - examples/v201101/update_conversion.rb
412
- - examples/v201101/update_campaign.rb
413
- - examples/v201101/update_ad_group_criterion.rb
414
- - examples/v201101/update_ad_group.rb
415
- - examples/v201101/update_ad.rb
416
- - examples/v201101/set_campaign_targets.rb
417
- - examples/v201101/set_ad_params.rb
418
- - examples/v201101/promote_experiment.rb
419
- - examples/v201101/perform_bulk_mutate_job.rb
420
- - examples/v201101/handle_policy_violation_error.rb
421
- - examples/v201101/handle_partial_failures.rb
422
- - examples/v201101/get_unit_count.rb
423
- - examples/v201101/get_traffic_estimates.rb
424
- - examples/v201101/get_total_usage_units_per_month.rb
425
- - examples/v201101/get_report_fields.rb
426
- - examples/v201101/get_related_placements.rb
427
- - examples/v201101/get_related_keywords.rb
428
- - examples/v201101/get_operation_count.rb
429
- - examples/v201101/get_method_cost.rb
430
- - examples/v201101/get_keyword_opportunities.rb
415
+ - examples/v201008/get_geo_location_info.rb
416
+ - examples/v201008/get_related_keywords.rb
417
+ - examples/v201008/get_all_ad_groups.rb
418
+ - examples/v201008/get_all_ad_params.rb
419
+ - examples/v201008/set_campaign_targets.rb
420
+ - examples/v201008/delete_ad_group.rb
421
+ - examples/v201008/add_campaign.rb
422
+ - examples/v201008/get_all_active_ad_group_criteria.rb
423
+ - examples/v201008/get_all_images.rb
424
+ - examples/v201008/add_campaign_ad_extension.rb
425
+ - examples/v201008/add_keywords_performance_report_definition.rb
426
+ - examples/v201008/check_campaigns.rb
427
+ - examples/v201008/get_all_ad_extension_overrides.rb
428
+ - examples/v201008/get_operation_count.rb
429
+ - examples/v201008/get_all_user_lists.rb
430
+ - examples/v201008/get_all_report_definitions.rb
431
+ - examples/v201008/get_conversion_optimizer_eligibility.rb
432
+ - examples/v201008/add_ad_extension_override.rb
433
+ - examples/v201008/get_all_experiments.rb
434
+ - examples/v201008/delete_user_list.rb
435
+ - examples/v201008/delete_campaign.rb
436
+ - examples/v201008/add_user_list.rb
437
+ - examples/v201008/perform_bulk_mutate_job.rb
438
+ - examples/v201008/get_method_cost.rb
439
+ - examples/v201008/add_experiment.rb
440
+ - examples/v201008/get_all_paused_campaigns.rb
441
+ - examples/v201008/get_all_ads.rb
442
+ - examples/v201008/get_all_campaign_targets.rb
443
+ - examples/v201008/upload_image.rb
444
+ - examples/v201008/add_ad_group_criteria.rb
445
+ - examples/v201008/get_total_usage_units_per_month.rb
446
+ - examples/v201008/delete_experiment.rb
447
+ - examples/v201008/update_campaign.rb
448
+ - examples/v201008/promote_experiment.rb
449
+ - examples/v201008/get_bulk_mutate_job.rb
450
+ - examples/v201008/get_related_placements.rb
451
+ - examples/v201008/get_account_hierarchy.rb
452
+ - examples/v201008/update_ad_group_criterion.rb
453
+ - examples/v201008/delete_ad.rb
454
+ - examples/v201008/get_campaign_alerts.rb
455
+ - examples/v201008/get_all_ad_group_criteria.rb
456
+ - examples/v201008/handle_policy_violation_error.rb
457
+ - examples/v201008/download_report.rb
458
+ - examples/v201008/update_ad_group.rb
459
+ - examples/v201008/get_all_disapproved_ads.rb
460
+ - examples/v201008/handle_partial_failures.rb
461
+ - examples/v201008/delete_bulk_mutate_job.rb
462
+ - examples/v201008/get_all_campaigns.rb
463
+ - examples/v201008/get_traffic_estimates.rb
464
+ - examples/v201008/add_negative_campaign_criterion.rb
465
+ - examples/v201008/add_ads.rb
466
+ - examples/v201008/delete_ad_group_criterion.rb
467
+ - examples/v201008/get_all_videos.rb
468
+ - examples/v201008/update_ad.rb
469
+ - examples/v201008/get_all_account_changes.rb
470
+ - examples/v201008/add_ad_group.rb
471
+ - examples/v201008/update_user_list.rb
472
+ - examples/v201008/get_report_fields.rb
473
+ - examples/v201008/get_criterion_bid_landscape.rb
474
+ - examples/v201008/get_all_campaign_ad_extensions.rb
475
+ - examples/v201008/get_unit_count.rb
476
+ - examples/v201008/set_ad_params.rb
477
+ - examples/v200909/get_geo_location_info.rb
478
+ - examples/v200909/get_related_keywords.rb
479
+ - examples/v200909/get_all_ad_groups.rb
480
+ - examples/v200909/get_all_ad_params.rb
481
+ - examples/v200909/set_campaign_targets.rb
482
+ - examples/v200909/delete_ad_group.rb
483
+ - examples/v200909/add_campaign.rb
484
+ - examples/v200909/get_all_active_ad_group_criteria.rb
485
+ - examples/v200909/add_campaign_ad_extension.rb
486
+ - examples/v200909/check_campaigns.rb
487
+ - examples/v200909/get_all_ad_extension_overrides.rb
488
+ - examples/v200909/get_operation_count.rb
489
+ - examples/v200909/get_conversion_optimizer_eligibility.rb
490
+ - examples/v200909/add_ad_extension_override.rb
491
+ - examples/v200909/delete_campaign.rb
492
+ - examples/v200909/perform_bulk_mutate_job.rb
493
+ - examples/v200909/get_method_cost.rb
494
+ - examples/v200909/get_all_paused_campaigns.rb
495
+ - examples/v200909/get_all_ads.rb
496
+ - examples/v200909/get_all_campaign_targets.rb
497
+ - examples/v200909/add_ad_group_criteria.rb
498
+ - examples/v200909/get_total_usage_units_per_month.rb
499
+ - examples/v200909/update_campaign.rb
500
+ - examples/v200909/get_related_placements.rb
501
+ - examples/v200909/update_ad_group_criterion.rb
502
+ - examples/v200909/delete_ad.rb
503
+ - examples/v200909/get_all_ad_group_criteria.rb
504
+ - examples/v200909/update_ad_group.rb
505
+ - examples/v200909/get_all_disapproved_ads.rb
506
+ - examples/v200909/get_all_campaigns.rb
507
+ - examples/v200909/add_negative_campaign_criterion.rb
508
+ - examples/v200909/add_ads.rb
509
+ - examples/v200909/delete_ad_group_criterion.rb
510
+ - examples/v200909/update_ad.rb
511
+ - examples/v200909/add_ad_group.rb
512
+ - examples/v200909/get_all_campaign_ad_extensions.rb
513
+ - examples/v200909/get_unit_count.rb
514
+ - examples/v200909/set_ad_params.rb
431
515
  - examples/v201101/get_geo_location_info.rb
432
- - examples/v201101/get_criterion_bid_landscape.rb
433
- - examples/v201101/get_conversion_optimizer_eligibility.rb
434
- - examples/v201101/get_campaign_alerts.rb
435
- - examples/v201101/get_bulk_mutate_job.rb
436
- - examples/v201101/get_all_videos.rb
516
+ - examples/v201101/get_related_keywords.rb
517
+ - examples/v201101/get_all_ad_groups.rb
518
+ - examples/v201101/get_all_ad_params.rb
519
+ - examples/v201101/set_campaign_targets.rb
520
+ - examples/v201101/delete_ad_group.rb
521
+ - examples/v201101/add_campaign.rb
522
+ - examples/v201101/get_all_active_ad_group_criteria.rb
523
+ - examples/v201101/get_all_images.rb
524
+ - examples/v201101/add_campaign_ad_extension.rb
525
+ - examples/v201101/add_keywords_performance_report_definition.rb
526
+ - examples/v201101/add_mcc_report_definition.rb
527
+ - examples/v201101/check_campaigns.rb
528
+ - examples/v201101/get_all_ad_extension_overrides.rb
529
+ - examples/v201101/get_operation_count.rb
437
530
  - examples/v201101/get_all_user_lists.rb
438
531
  - examples/v201101/get_all_report_definitions.rb
439
- - examples/v201101/get_all_paused_campaigns.rb
440
- - examples/v201101/get_all_images.rb
532
+ - examples/v201101/download_mcc_report_as_file.rb
533
+ - examples/v201101/get_conversion_optimizer_eligibility.rb
534
+ - examples/v201101/add_ad_extension_override.rb
535
+ - examples/v201101/add_conversion.rb
441
536
  - examples/v201101/get_all_experiments.rb
442
- - examples/v201101/get_all_disapproved_ads.rb
443
- - examples/v201101/get_all_conversions.rb
444
- - examples/v201101/get_all_campaigns.rb
445
- - examples/v201101/get_all_campaign_targets.rb
446
- - examples/v201101/get_all_campaign_ad_extensions.rb
537
+ - examples/v201101/delete_user_list.rb
538
+ - examples/v201101/delete_campaign.rb
539
+ - examples/v201101/add_user_list.rb
540
+ - examples/v201101/perform_bulk_mutate_job.rb
541
+ - examples/v201101/oauth_handling.rb
542
+ - examples/v201101/get_method_cost.rb
543
+ - examples/v201101/add_experiment.rb
544
+ - examples/v201101/get_all_paused_campaigns.rb
447
545
  - examples/v201101/get_all_ads.rb
448
- - examples/v201101/get_all_ad_params.rb
449
- - examples/v201101/get_all_ad_groups.rb
450
- - examples/v201101/get_all_ad_group_criteria.rb
451
- - examples/v201101/get_all_ad_extension_overrides.rb
452
- - examples/v201101/get_all_active_ad_group_criteria.rb
453
- - examples/v201101/get_all_account_changes.rb
454
- - examples/v201101/get_ad_group_bid_landscape.rb
546
+ - examples/v201101/get_all_campaign_targets.rb
547
+ - examples/v201101/upload_image.rb
548
+ - examples/v201101/add_ad_group_criteria.rb
549
+ - examples/v201101/get_total_usage_units_per_month.rb
550
+ - examples/v201101/delete_experiment.rb
551
+ - examples/v201101/update_campaign.rb
552
+ - examples/v201101/promote_experiment.rb
553
+ - examples/v201101/get_bulk_mutate_job.rb
554
+ - examples/v201101/get_related_placements.rb
455
555
  - examples/v201101/get_account_hierarchy.rb
556
+ - examples/v201101/update_ad_group_criterion.rb
557
+ - examples/v201101/delete_ad.rb
558
+ - examples/v201101/get_campaign_alerts.rb
559
+ - examples/v201101/get_all_ad_group_criteria.rb
560
+ - examples/v201101/handle_policy_violation_error.rb
456
561
  - examples/v201101/download_report.rb
457
- - examples/v201101/download_mcc_report_as_file.rb
458
- - examples/v201101/download_mcc_report.rb
459
- - examples/v201101/delete_user_list.rb
460
- - examples/v201101/delete_experiment.rb
461
- - examples/v201101/delete_campaign.rb
562
+ - examples/v201101/update_ad_group.rb
563
+ - examples/v201101/get_ad_group_bid_landscape.rb
564
+ - examples/v201101/get_keyword_opportunities.rb
565
+ - examples/v201101/get_all_disapproved_ads.rb
566
+ - examples/v201101/handle_partial_failures.rb
462
567
  - examples/v201101/delete_bulk_mutate_job.rb
463
- - examples/v201101/delete_ad_group_criterion.rb
464
- - examples/v201101/delete_ad_group.rb
465
- - examples/v201101/delete_ad.rb
466
- - examples/v201101/check_campaigns.rb
467
- - examples/v201101/add_user_list.rb
568
+ - examples/v201101/get_all_campaigns.rb
569
+ - examples/v201101/download_mcc_report.rb
570
+ - examples/v201101/get_traffic_estimates.rb
468
571
  - examples/v201101/add_negative_campaign_criterion.rb
469
- - examples/v201101/add_mcc_report_definition.rb
470
- - examples/v201101/add_keywords_performance_report_definition.rb
471
- - examples/v201101/add_experiment.rb
472
- - examples/v201101/add_conversion.rb
473
- - examples/v201101/add_campaign_ad_extension.rb
474
- - examples/v201101/add_campaign.rb
475
572
  - examples/v201101/add_ads.rb
476
- - examples/v201101/add_ad_group_criteria.rb
573
+ - examples/v201101/delete_ad_group_criterion.rb
574
+ - examples/v201101/get_all_videos.rb
575
+ - examples/v201101/update_ad.rb
576
+ - examples/v201101/get_all_account_changes.rb
477
577
  - examples/v201101/add_ad_group.rb
478
- - examples/v201101/add_ad_extension_override.rb
479
- - examples/v201008/upload_image.rb
480
- - examples/v201008/update_user_list.rb
481
- - examples/v201008/update_campaign.rb
482
- - examples/v201008/update_ad_group_criterion.rb
483
- - examples/v201008/update_ad_group.rb
484
- - examples/v201008/update_ad.rb
485
- - examples/v201008/set_campaign_targets.rb
486
- - examples/v201008/set_ad_params.rb
487
- - examples/v201008/promote_experiment.rb
488
- - examples/v201008/perform_bulk_mutate_job.rb
489
- - examples/v201008/handle_policy_violation_error.rb
490
- - examples/v201008/handle_partial_failures.rb
491
- - examples/v201008/get_unit_count.rb
492
- - examples/v201008/get_traffic_estimates.rb
493
- - examples/v201008/get_total_usage_units_per_month.rb
494
- - examples/v201008/get_report_fields.rb
495
- - examples/v201008/get_related_placements.rb
496
- - examples/v201008/get_related_keywords.rb
497
- - examples/v201008/get_operation_count.rb
498
- - examples/v201008/get_method_cost.rb
499
- - examples/v201008/get_geo_location_info.rb
500
- - examples/v201008/get_criterion_bid_landscape.rb
501
- - examples/v201008/get_conversion_optimizer_eligibility.rb
502
- - examples/v201008/get_campaign_alerts.rb
503
- - examples/v201008/get_bulk_mutate_job.rb
504
- - examples/v201008/get_all_videos.rb
505
- - examples/v201008/get_all_user_lists.rb
506
- - examples/v201008/get_all_report_definitions.rb
507
- - examples/v201008/get_all_paused_campaigns.rb
508
- - examples/v201008/get_all_images.rb
509
- - examples/v201008/get_all_experiments.rb
510
- - examples/v201008/get_all_disapproved_ads.rb
511
- - examples/v201008/get_all_campaigns.rb
512
- - examples/v201008/get_all_campaign_targets.rb
513
- - examples/v201008/get_all_campaign_ad_extensions.rb
514
- - examples/v201008/get_all_ads.rb
515
- - examples/v201008/get_all_ad_params.rb
516
- - examples/v201008/get_all_ad_groups.rb
517
- - examples/v201008/get_all_ad_group_criteria.rb
518
- - examples/v201008/get_all_ad_extension_overrides.rb
519
- - examples/v201008/get_all_active_ad_group_criteria.rb
520
- - examples/v201008/get_all_account_changes.rb
521
- - examples/v201008/get_account_hierarchy.rb
522
- - examples/v201008/download_report.rb
523
- - examples/v201008/delete_user_list.rb
524
- - examples/v201008/delete_experiment.rb
525
- - examples/v201008/delete_campaign.rb
526
- - examples/v201008/delete_bulk_mutate_job.rb
527
- - examples/v201008/delete_ad_group_criterion.rb
528
- - examples/v201008/delete_ad_group.rb
529
- - examples/v201008/delete_ad.rb
530
- - examples/v201008/check_campaigns.rb
531
- - examples/v201008/add_user_list.rb
532
- - examples/v201008/add_negative_campaign_criterion.rb
533
- - examples/v201008/add_keywords_performance_report_definition.rb
534
- - examples/v201008/add_experiment.rb
535
- - examples/v201008/add_campaign_ad_extension.rb
536
- - examples/v201008/add_campaign.rb
537
- - examples/v201008/add_ads.rb
538
- - examples/v201008/add_ad_group_criteria.rb
539
- - examples/v201008/add_ad_group.rb
540
- - examples/v201008/add_ad_extension_override.rb
541
- - examples/v201003/upload_image.rb
542
- - examples/v201003/update_campaign.rb
543
- - examples/v201003/update_ad_group_criterion.rb
544
- - examples/v201003/update_ad_group.rb
545
- - examples/v201003/update_ad.rb
546
- - examples/v201003/set_campaign_targets.rb
547
- - examples/v201003/set_ad_params.rb
548
- - examples/v201003/perform_bulk_mutate_job.rb
549
- - examples/v201003/get_unit_count.rb
550
- - examples/v201003/get_total_usage_units_per_month.rb
551
- - examples/v201003/get_report_fields.rb
552
- - examples/v201003/get_related_placements.rb
578
+ - examples/v201101/update_user_list.rb
579
+ - examples/v201101/get_report_fields.rb
580
+ - examples/v201101/get_all_conversions.rb
581
+ - examples/v201101/get_criterion_bid_landscape.rb
582
+ - examples/v201101/get_all_campaign_ad_extensions.rb
583
+ - examples/v201101/get_unit_count.rb
584
+ - examples/v201101/update_conversion.rb
585
+ - examples/v201101/set_ad_params.rb
586
+ - examples/v201101/handle_second_factor.rb
587
+ - examples/v201003/get_geo_location_info.rb
553
588
  - examples/v201003/get_related_keywords.rb
589
+ - examples/v201003/get_all_ad_groups.rb
590
+ - examples/v201003/get_all_ad_params.rb
591
+ - examples/v201003/set_campaign_targets.rb
592
+ - examples/v201003/delete_ad_group.rb
593
+ - examples/v201003/add_campaign.rb
594
+ - examples/v201003/get_all_active_ad_group_criteria.rb
595
+ - examples/v201003/get_all_images.rb
596
+ - examples/v201003/add_campaign_ad_extension.rb
597
+ - examples/v201003/add_keywords_performance_report_definition.rb
598
+ - examples/v201003/check_campaigns.rb
599
+ - examples/v201003/get_all_ad_extension_overrides.rb
554
600
  - examples/v201003/get_operation_count.rb
555
- - examples/v201003/get_method_cost.rb
556
- - examples/v201003/get_geo_location_info.rb
557
- - examples/v201003/get_criterion_bid_landscape.rb
558
- - examples/v201003/get_conversion_optimizer_eligibility.rb
559
- - examples/v201003/get_all_videos.rb
560
601
  - examples/v201003/get_all_report_definitions.rb
602
+ - examples/v201003/get_conversion_optimizer_eligibility.rb
603
+ - examples/v201003/add_ad_extension_override.rb
604
+ - examples/v201003/delete_campaign.rb
605
+ - examples/v201003/perform_bulk_mutate_job.rb
606
+ - examples/v201003/get_method_cost.rb
561
607
  - examples/v201003/get_all_paused_campaigns.rb
562
- - examples/v201003/get_all_images.rb
563
- - examples/v201003/get_all_disapproved_ads.rb
564
- - examples/v201003/get_all_campaigns.rb
565
- - examples/v201003/get_all_campaign_targets.rb
566
- - examples/v201003/get_all_campaign_ad_extensions.rb
567
608
  - examples/v201003/get_all_ads.rb
568
- - examples/v201003/get_all_ad_params.rb
569
- - examples/v201003/get_all_ad_groups.rb
609
+ - examples/v201003/get_all_campaign_targets.rb
610
+ - examples/v201003/upload_image.rb
611
+ - examples/v201003/add_ad_group_criteria.rb
612
+ - examples/v201003/get_total_usage_units_per_month.rb
613
+ - examples/v201003/update_campaign.rb
614
+ - examples/v201003/get_related_placements.rb
615
+ - examples/v201003/update_ad_group_criterion.rb
616
+ - examples/v201003/delete_ad.rb
570
617
  - examples/v201003/get_all_ad_group_criteria.rb
571
- - examples/v201003/get_all_ad_extension_overrides.rb
572
- - examples/v201003/get_all_active_ad_group_criteria.rb
573
618
  - examples/v201003/download_report.rb
574
- - examples/v201003/delete_campaign.rb
575
- - examples/v201003/delete_ad_group_criterion.rb
576
- - examples/v201003/delete_ad_group.rb
577
- - examples/v201003/delete_ad.rb
578
- - examples/v201003/check_campaigns.rb
619
+ - examples/v201003/update_ad_group.rb
620
+ - examples/v201003/get_all_disapproved_ads.rb
621
+ - examples/v201003/get_all_campaigns.rb
579
622
  - examples/v201003/add_negative_campaign_criterion.rb
580
- - examples/v201003/add_keywords_performance_report_definition.rb
581
- - examples/v201003/add_campaign_ad_extension.rb
582
- - examples/v201003/add_campaign.rb
583
623
  - examples/v201003/add_ads.rb
584
- - examples/v201003/add_ad_group_criteria.rb
624
+ - examples/v201003/delete_ad_group_criterion.rb
625
+ - examples/v201003/get_all_videos.rb
626
+ - examples/v201003/update_ad.rb
585
627
  - examples/v201003/add_ad_group.rb
586
- - examples/v201003/add_ad_extension_override.rb
587
- - examples/v200909/update_campaign.rb
588
- - examples/v200909/update_ad_group_criterion.rb
589
- - examples/v200909/update_ad_group.rb
590
- - examples/v200909/update_ad.rb
591
- - examples/v200909/set_campaign_targets.rb
592
- - examples/v200909/set_ad_params.rb
593
- - examples/v200909/perform_bulk_mutate_job.rb
594
- - examples/v200909/get_unit_count.rb
595
- - examples/v200909/get_total_usage_units_per_month.rb
596
- - examples/v200909/get_related_placements.rb
597
- - examples/v200909/get_related_keywords.rb
598
- - examples/v200909/get_operation_count.rb
599
- - examples/v200909/get_method_cost.rb
600
- - examples/v200909/get_geo_location_info.rb
601
- - examples/v200909/get_conversion_optimizer_eligibility.rb
602
- - examples/v200909/get_all_paused_campaigns.rb
603
- - examples/v200909/get_all_disapproved_ads.rb
604
- - examples/v200909/get_all_campaigns.rb
605
- - examples/v200909/get_all_campaign_targets.rb
606
- - examples/v200909/get_all_campaign_ad_extensions.rb
607
- - examples/v200909/get_all_ads.rb
608
- - examples/v200909/get_all_ad_params.rb
609
- - examples/v200909/get_all_ad_groups.rb
610
- - examples/v200909/get_all_ad_group_criteria.rb
611
- - examples/v200909/get_all_ad_extension_overrides.rb
612
- - examples/v200909/get_all_active_ad_group_criteria.rb
613
- - examples/v200909/delete_campaign.rb
614
- - examples/v200909/delete_ad_group_criterion.rb
615
- - examples/v200909/delete_ad_group.rb
616
- - examples/v200909/delete_ad.rb
617
- - examples/v200909/check_campaigns.rb
618
- - examples/v200909/add_negative_campaign_criterion.rb
619
- - examples/v200909/add_campaign_ad_extension.rb
620
- - examples/v200909/add_campaign.rb
621
- - examples/v200909/add_ads.rb
622
- - examples/v200909/add_ad_group_criteria.rb
623
- - examples/v200909/add_ad_group.rb
624
- - examples/v200909/add_ad_extension_override.rb
628
+ - examples/v201003/get_report_fields.rb
629
+ - examples/v201003/get_criterion_bid_landscape.rb
630
+ - examples/v201003/get_all_campaign_ad_extensions.rb
631
+ - examples/v201003/get_unit_count.rb
632
+ - examples/v201003/set_ad_params.rb
625
633
  - README
626
634
  - COPYING
627
635
  - ChangeLog
@@ -656,7 +664,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
656
664
  requirements:
657
665
  - soap4r = 1.5.8
658
666
  - httpclient version 2.1.2 or later
659
- - google-ads-common version 0.4.x
667
+ - google-ads-common version 0.5.x
660
668
  rubyforge_project: adwords_api
661
669
  rubygems_version: 1.3.7
662
670
  signing_key: