google-ads-googleads 29.0.0 → 30.0.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/ads/google_ads/factories/v15/operations.rb +252 -252
- data/lib/google/ads/google_ads/factories/v16/operations.rb +260 -260
- data/lib/google/ads/google_ads/factories/v17/enums.rb +40 -0
- data/lib/google/ads/google_ads/factories/v17/operations.rb +260 -260
- data/lib/google/ads/google_ads/factories/v17/resources.rb +169 -0
- data/lib/google/ads/google_ads/factories/v17/services.rb +26 -2
- data/lib/google/ads/google_ads/v17/common/bidding_pb.rb +6 -1
- data/lib/google/ads/google_ads/v17/common/segments_pb.rb +2 -1
- data/lib/google/ads/google_ads/v17/enums/ad_format_type_pb.rb +45 -0
- data/lib/google/ads/google_ads/v17/enums/bidding_strategy_type_pb.rb +1 -1
- data/lib/google/ads/google_ads/v17/enums/change_status_resource_type_pb.rb +1 -1
- data/lib/google/ads/google_ads/v17/enums/fixed_cpm_goal_pb.rb +45 -0
- data/lib/google/ads/google_ads/v17/enums/fixed_cpm_target_frequency_time_unit_pb.rb +45 -0
- data/lib/google/ads/google_ads/v17/enums/user_list_customer_type_category_pb.rb +1 -1
- data/lib/google/ads/google_ads/v17/errors/automatically_created_asset_removal_error_pb.rb +45 -0
- data/lib/google/ads/google_ads/v17/errors/errors_pb.rb +3 -1
- data/lib/google/ads/google_ads/v17/errors/shareable_preview_error_pb.rb +45 -0
- data/lib/google/ads/google_ads/v17/resources/ad_group_pb.rb +1 -1
- data/lib/google/ads/google_ads/v17/resources/campaign_pb.rb +3 -1
- data/lib/google/ads/google_ads/v17/resources/change_status_pb.rb +1 -1
- data/lib/google/ads/google_ads/v17/resources/offline_conversion_upload_client_summary_pb.rb +1 -1
- data/lib/google/ads/google_ads/v17/resources/offline_conversion_upload_conversion_action_summary_pb.rb +51 -0
- data/lib/google/ads/google_ads/v17/services/ad_group_ad_service/client.rb +109 -0
- data/lib/google/ads/google_ads/v17/services/ad_group_ad_service/paths.rb +17 -0
- data/lib/google/ads/google_ads/v17/services/ad_group_ad_service_pb.rb +5 -1
- data/lib/google/ads/google_ads/v17/services/ad_group_ad_service_services_pb.rb +13 -0
- data/lib/google/ads/google_ads/v17/services/audience_insights_service/client.rb +128 -1
- data/lib/google/ads/google_ads/v17/services/audience_insights_service_pb.rb +5 -1
- data/lib/google/ads/google_ads/v17/services/audience_insights_service_services_pb.rb +15 -0
- data/lib/google/ads/google_ads/v17/services/google_ads_service/paths.rb +19 -0
- data/lib/google/ads/google_ads/v17/services/google_ads_service_pb.rb +3 -1
- data/lib/google/ads/google_ads/v17/services/shareable_preview_service/client.rb +428 -0
- data/lib/google/ads/google_ads/v17/services/shareable_preview_service/credentials.rb +38 -0
- data/lib/google/ads/google_ads/v17/services/shareable_preview_service.rb +50 -0
- data/lib/google/ads/google_ads/v17/services/shareable_preview_service_pb.rb +55 -0
- data/lib/google/ads/google_ads/v17/services/shareable_preview_service_services_pb.rb +47 -0
- data/lib/google/ads/google_ads/v17/services.rb +1 -0
- data/lib/google/ads/google_ads/version.rb +1 -1
- metadata +14 -3
@@ -1004,6 +1004,22 @@ module Google
|
|
1004
1004
|
Google::Ads::GoogleAds::V17::Enums::SeasonalityEventStatusEnum::SeasonalityEventStatus.descriptor
|
1005
1005
|
end
|
1006
1006
|
|
1007
|
+
# Returns the descriptor for the FixedCpmGoal enum
|
1008
|
+
#
|
1009
|
+
# @return [Google::Protobuf::EnumDescriptor] for the FixedCpmGoal enum
|
1010
|
+
def self.fixed_cpm_goal
|
1011
|
+
require "google/ads/google_ads/v17/enums/fixed_cpm_goal_pb"
|
1012
|
+
Google::Ads::GoogleAds::V17::Enums::FixedCpmGoalEnum::FixedCpmGoal.descriptor
|
1013
|
+
end
|
1014
|
+
|
1015
|
+
# Returns the descriptor for the FixedCpmTargetFrequencyTimeUnit enum
|
1016
|
+
#
|
1017
|
+
# @return [Google::Protobuf::EnumDescriptor] for the FixedCpmTargetFrequencyTimeUnit enum
|
1018
|
+
def self.fixed_cpm_target_frequency_time_unit
|
1019
|
+
require "google/ads/google_ads/v17/enums/fixed_cpm_target_frequency_time_unit_pb"
|
1020
|
+
Google::Ads::GoogleAds::V17::Enums::FixedCpmTargetFrequencyTimeUnitEnum::FixedCpmTargetFrequencyTimeUnit.descriptor
|
1021
|
+
end
|
1022
|
+
|
1007
1023
|
# Returns the descriptor for the TargetFrequencyTimeUnit enum
|
1008
1024
|
#
|
1009
1025
|
# @return [Google::Protobuf::EnumDescriptor] for the TargetFrequencyTimeUnit enum
|
@@ -2692,6 +2708,14 @@ module Google
|
|
2692
2708
|
Google::Ads::GoogleAds::V17::Enums::AdDestinationTypeEnum::AdDestinationType.descriptor
|
2693
2709
|
end
|
2694
2710
|
|
2711
|
+
# Returns the descriptor for the AdFormatType enum
|
2712
|
+
#
|
2713
|
+
# @return [Google::Protobuf::EnumDescriptor] for the AdFormatType enum
|
2714
|
+
def self.ad_format_type
|
2715
|
+
require "google/ads/google_ads/v17/enums/ad_format_type_pb"
|
2716
|
+
Google::Ads::GoogleAds::V17::Enums::AdFormatTypeEnum::AdFormatType.descriptor
|
2717
|
+
end
|
2718
|
+
|
2695
2719
|
# Returns the descriptor for the AdNetworkType enum
|
2696
2720
|
#
|
2697
2721
|
# @return [Google::Protobuf::EnumDescriptor] for the AdNetworkType enum
|
@@ -3196,6 +3220,14 @@ module Google
|
|
3196
3220
|
Google::Ads::GoogleAds::V17::Errors::AuthorizationErrorEnum::AuthorizationError.descriptor
|
3197
3221
|
end
|
3198
3222
|
|
3223
|
+
# Returns the descriptor for the AutomaticallyCreatedAssetRemovalError enum
|
3224
|
+
#
|
3225
|
+
# @return [Google::Protobuf::EnumDescriptor] for the AutomaticallyCreatedAssetRemovalError enum
|
3226
|
+
def self.automatically_created_asset_removal_error
|
3227
|
+
require "google/ads/google_ads/v17/errors/automatically_created_asset_removal_error_pb"
|
3228
|
+
Google::Ads::GoogleAds::V17::Errors::AutomaticallyCreatedAssetRemovalErrorEnum::AutomaticallyCreatedAssetRemovalError.descriptor
|
3229
|
+
end
|
3230
|
+
|
3199
3231
|
# Returns the descriptor for the BatchJobError enum
|
3200
3232
|
#
|
3201
3233
|
# @return [Google::Protobuf::EnumDescriptor] for the BatchJobError enum
|
@@ -4012,6 +4044,14 @@ module Google
|
|
4012
4044
|
Google::Ads::GoogleAds::V17::Errors::SettingErrorEnum::SettingError.descriptor
|
4013
4045
|
end
|
4014
4046
|
|
4047
|
+
# Returns the descriptor for the ShareablePreviewError enum
|
4048
|
+
#
|
4049
|
+
# @return [Google::Protobuf::EnumDescriptor] for the ShareablePreviewError enum
|
4050
|
+
def self.shareable_preview_error
|
4051
|
+
require "google/ads/google_ads/v17/errors/shareable_preview_error_pb"
|
4052
|
+
Google::Ads::GoogleAds::V17::Errors::ShareablePreviewErrorEnum::ShareablePreviewError.descriptor
|
4053
|
+
end
|
4054
|
+
|
4015
4055
|
# Returns the descriptor for the SharedCriterionError enum
|
4016
4056
|
#
|
4017
4057
|
# @return [Google::Protobuf::EnumDescriptor] for the SharedCriterionError enum
|