google-apis-analyticsadmin_v1alpha 0.11.0 → 0.12.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/apis/analyticsadmin_v1alpha/classes.rb +291 -0
- data/lib/google/apis/analyticsadmin_v1alpha/gem_version.rb +2 -2
- data/lib/google/apis/analyticsadmin_v1alpha/representations.rb +127 -0
- data/lib/google/apis/analyticsadmin_v1alpha/service.rb +391 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 56bfbda3eb904d697531e5e1d544aefa110e6822610ec762efc87ca95110e93a
|
4
|
+
data.tar.gz: e0ef818819c346342c7b38ae4dc8928cdf0b5c8093b7a525966d377710c84954
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 245e82745214aef0a5c7dfe5ef4ad0b13d599e665a363e704fc7157a09c486d8a764ad17a85c8894cacb7ddbcf0288a78b8391856c071b2e899c0a116b19925d
|
7
|
+
data.tar.gz: eaf70c87465fe5ce9ffe1cebc2f5d8e3182bdfbd91976d1ff5c38b428403cd6f54cc08543759b27be1542741d24bcd916c8ac7f6d0eed26d9e7bbee5f49ebbfe
|
data/CHANGELOG.md
CHANGED
@@ -168,6 +168,38 @@ module Google
|
|
168
168
|
end
|
169
169
|
end
|
170
170
|
|
171
|
+
# Request message for ApproveDisplayVideo360AdvertiserLinkProposal RPC.
|
172
|
+
class GoogleAnalyticsAdminV1alphaApproveDisplayVideo360AdvertiserLinkProposalRequest
|
173
|
+
include Google::Apis::Core::Hashable
|
174
|
+
|
175
|
+
def initialize(**args)
|
176
|
+
update!(**args)
|
177
|
+
end
|
178
|
+
|
179
|
+
# Update properties of this object
|
180
|
+
def update!(**args)
|
181
|
+
end
|
182
|
+
end
|
183
|
+
|
184
|
+
# Response message for ApproveDisplayVideo360AdvertiserLinkProposal RPC.
|
185
|
+
class GoogleAnalyticsAdminV1alphaApproveDisplayVideo360AdvertiserLinkProposalResponse
|
186
|
+
include Google::Apis::Core::Hashable
|
187
|
+
|
188
|
+
# A link between a GA4 property and a Display & Video 360 advertiser.
|
189
|
+
# Corresponds to the JSON property `displayVideo360AdvertiserLink`
|
190
|
+
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLink]
|
191
|
+
attr_accessor :display_video360_advertiser_link
|
192
|
+
|
193
|
+
def initialize(**args)
|
194
|
+
update!(**args)
|
195
|
+
end
|
196
|
+
|
197
|
+
# Update properties of this object
|
198
|
+
def update!(**args)
|
199
|
+
@display_video360_advertiser_link = args[:display_video360_advertiser_link] if args.key?(:display_video360_advertiser_link)
|
200
|
+
end
|
201
|
+
end
|
202
|
+
|
171
203
|
# Request message for ArchiveCustomDimension RPC.
|
172
204
|
class GoogleAnalyticsAdminV1alphaArchiveCustomDimensionRequest
|
173
205
|
include Google::Apis::Core::Hashable
|
@@ -417,6 +449,19 @@ module Google
|
|
417
449
|
end
|
418
450
|
end
|
419
451
|
|
452
|
+
# Request message for CancelDisplayVideo360AdvertiserLinkProposal RPC.
|
453
|
+
class GoogleAnalyticsAdminV1alphaCancelDisplayVideo360AdvertiserLinkProposalRequest
|
454
|
+
include Google::Apis::Core::Hashable
|
455
|
+
|
456
|
+
def initialize(**args)
|
457
|
+
update!(**args)
|
458
|
+
end
|
459
|
+
|
460
|
+
# Update properties of this object
|
461
|
+
def update!(**args)
|
462
|
+
end
|
463
|
+
end
|
464
|
+
|
420
465
|
# A description of a change to a single Google Analytics resource.
|
421
466
|
class GoogleAnalyticsAdminV1alphaChangeHistoryChange
|
422
467
|
include Google::Apis::Core::Hashable
|
@@ -486,6 +531,19 @@ module Google
|
|
486
531
|
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaCustomMetric]
|
487
532
|
attr_accessor :custom_metric
|
488
533
|
|
534
|
+
# A link between a GA4 property and a Display & Video 360 advertiser.
|
535
|
+
# Corresponds to the JSON property `displayVideo360AdvertiserLink`
|
536
|
+
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLink]
|
537
|
+
attr_accessor :display_video360_advertiser_link
|
538
|
+
|
539
|
+
# A proposal for a link between an GA4 property and a Display & Video 360
|
540
|
+
# advertiser. A proposal is converted to a DisplayVideo360AdvertiserLink once
|
541
|
+
# approved. Google Analytics admins approve inbound proposals while Display &
|
542
|
+
# Video 360 admins approve outbound proposals.
|
543
|
+
# Corresponds to the JSON property `displayVideo360AdvertiserLinkProposal`
|
544
|
+
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLinkProposal]
|
545
|
+
attr_accessor :display_video360_advertiser_link_proposal
|
546
|
+
|
489
547
|
# A link between an GA4 property and a Firebase project.
|
490
548
|
# Corresponds to the JSON property `firebaseLink`
|
491
549
|
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaFirebaseLink]
|
@@ -532,6 +590,8 @@ module Google
|
|
532
590
|
@conversion_event = args[:conversion_event] if args.key?(:conversion_event)
|
533
591
|
@custom_dimension = args[:custom_dimension] if args.key?(:custom_dimension)
|
534
592
|
@custom_metric = args[:custom_metric] if args.key?(:custom_metric)
|
593
|
+
@display_video360_advertiser_link = args[:display_video360_advertiser_link] if args.key?(:display_video360_advertiser_link)
|
594
|
+
@display_video360_advertiser_link_proposal = args[:display_video360_advertiser_link_proposal] if args.key?(:display_video360_advertiser_link_proposal)
|
535
595
|
@firebase_link = args[:firebase_link] if args.key?(:firebase_link)
|
536
596
|
@google_ads_link = args[:google_ads_link] if args.key?(:google_ads_link)
|
537
597
|
@google_signals_settings = args[:google_signals_settings] if args.key?(:google_signals_settings)
|
@@ -886,6 +946,148 @@ module Google
|
|
886
946
|
end
|
887
947
|
end
|
888
948
|
|
949
|
+
# A link between a GA4 property and a Display & Video 360 advertiser.
|
950
|
+
class GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLink
|
951
|
+
include Google::Apis::Core::Hashable
|
952
|
+
|
953
|
+
# Enables personalized advertising features with this integration. If this field
|
954
|
+
# is not set on create/update, it will be defaulted to true.
|
955
|
+
# Corresponds to the JSON property `adsPersonalizationEnabled`
|
956
|
+
# @return [Boolean]
|
957
|
+
attr_accessor :ads_personalization_enabled
|
958
|
+
alias_method :ads_personalization_enabled?, :ads_personalization_enabled
|
959
|
+
|
960
|
+
# Output only. The display name of the Display & Video 360 Advertiser.
|
961
|
+
# Corresponds to the JSON property `advertiserDisplayName`
|
962
|
+
# @return [String]
|
963
|
+
attr_accessor :advertiser_display_name
|
964
|
+
|
965
|
+
# Immutable. The Display & Video 360 Advertiser's advertiser ID.
|
966
|
+
# Corresponds to the JSON property `advertiserId`
|
967
|
+
# @return [String]
|
968
|
+
attr_accessor :advertiser_id
|
969
|
+
|
970
|
+
# Immutable. Enables the import of campaign data from Display & Video 360 into
|
971
|
+
# the GA4 property. After link creation, this can only be updated from the
|
972
|
+
# Display & Video 360 product. If this field is not set on create, it will be
|
973
|
+
# defaulted to true.
|
974
|
+
# Corresponds to the JSON property `campaignDataSharingEnabled`
|
975
|
+
# @return [Boolean]
|
976
|
+
attr_accessor :campaign_data_sharing_enabled
|
977
|
+
alias_method :campaign_data_sharing_enabled?, :campaign_data_sharing_enabled
|
978
|
+
|
979
|
+
# Immutable. Enables the import of cost data from Display & Video 360 into the
|
980
|
+
# GA4 property. This can only be enabled if campaign_data_import_enabled is
|
981
|
+
# enabled. After link creation, this can only be updated from the Display &
|
982
|
+
# Video 360 product. If this field is not set on create, it will be defaulted to
|
983
|
+
# true.
|
984
|
+
# Corresponds to the JSON property `costDataSharingEnabled`
|
985
|
+
# @return [Boolean]
|
986
|
+
attr_accessor :cost_data_sharing_enabled
|
987
|
+
alias_method :cost_data_sharing_enabled?, :cost_data_sharing_enabled
|
988
|
+
|
989
|
+
# Output only. The resource name for this DisplayVideo360AdvertiserLink resource.
|
990
|
+
# Format: properties/`propertyId`/displayVideo360AdvertiserLinks/`linkId` Note:
|
991
|
+
# linkId is not the Display & Video 360 Advertiser ID
|
992
|
+
# Corresponds to the JSON property `name`
|
993
|
+
# @return [String]
|
994
|
+
attr_accessor :name
|
995
|
+
|
996
|
+
def initialize(**args)
|
997
|
+
update!(**args)
|
998
|
+
end
|
999
|
+
|
1000
|
+
# Update properties of this object
|
1001
|
+
def update!(**args)
|
1002
|
+
@ads_personalization_enabled = args[:ads_personalization_enabled] if args.key?(:ads_personalization_enabled)
|
1003
|
+
@advertiser_display_name = args[:advertiser_display_name] if args.key?(:advertiser_display_name)
|
1004
|
+
@advertiser_id = args[:advertiser_id] if args.key?(:advertiser_id)
|
1005
|
+
@campaign_data_sharing_enabled = args[:campaign_data_sharing_enabled] if args.key?(:campaign_data_sharing_enabled)
|
1006
|
+
@cost_data_sharing_enabled = args[:cost_data_sharing_enabled] if args.key?(:cost_data_sharing_enabled)
|
1007
|
+
@name = args[:name] if args.key?(:name)
|
1008
|
+
end
|
1009
|
+
end
|
1010
|
+
|
1011
|
+
# A proposal for a link between an GA4 property and a Display & Video 360
|
1012
|
+
# advertiser. A proposal is converted to a DisplayVideo360AdvertiserLink once
|
1013
|
+
# approved. Google Analytics admins approve inbound proposals while Display &
|
1014
|
+
# Video 360 admins approve outbound proposals.
|
1015
|
+
class GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLinkProposal
|
1016
|
+
include Google::Apis::Core::Hashable
|
1017
|
+
|
1018
|
+
# Immutable. Enables personalized advertising features with this integration. If
|
1019
|
+
# this field is not set on create, it will be defaulted to true.
|
1020
|
+
# Corresponds to the JSON property `adsPersonalizationEnabled`
|
1021
|
+
# @return [Boolean]
|
1022
|
+
attr_accessor :ads_personalization_enabled
|
1023
|
+
alias_method :ads_personalization_enabled?, :ads_personalization_enabled
|
1024
|
+
|
1025
|
+
# Output only. The display name of the Display & Video Advertiser. Only
|
1026
|
+
# populated for proposals that originated from Display & Video 360.
|
1027
|
+
# Corresponds to the JSON property `advertiserDisplayName`
|
1028
|
+
# @return [String]
|
1029
|
+
attr_accessor :advertiser_display_name
|
1030
|
+
|
1031
|
+
# Immutable. The Display & Video 360 Advertiser's advertiser ID.
|
1032
|
+
# Corresponds to the JSON property `advertiserId`
|
1033
|
+
# @return [String]
|
1034
|
+
attr_accessor :advertiser_id
|
1035
|
+
|
1036
|
+
# Immutable. Enables the import of campaign data from Display & Video 360. If
|
1037
|
+
# this field is not set on create, it will be defaulted to true.
|
1038
|
+
# Corresponds to the JSON property `campaignDataSharingEnabled`
|
1039
|
+
# @return [Boolean]
|
1040
|
+
attr_accessor :campaign_data_sharing_enabled
|
1041
|
+
alias_method :campaign_data_sharing_enabled?, :campaign_data_sharing_enabled
|
1042
|
+
|
1043
|
+
# Immutable. Enables the import of cost data from Display & Video 360. This can
|
1044
|
+
# only be enabled if campaign_data_import_enabled is enabled. If this field is
|
1045
|
+
# not set on create, it will be defaulted to true.
|
1046
|
+
# Corresponds to the JSON property `costDataSharingEnabled`
|
1047
|
+
# @return [Boolean]
|
1048
|
+
attr_accessor :cost_data_sharing_enabled
|
1049
|
+
alias_method :cost_data_sharing_enabled?, :cost_data_sharing_enabled
|
1050
|
+
|
1051
|
+
# Status information for a link proposal.
|
1052
|
+
# Corresponds to the JSON property `linkProposalStatusDetails`
|
1053
|
+
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaLinkProposalStatusDetails]
|
1054
|
+
attr_accessor :link_proposal_status_details
|
1055
|
+
|
1056
|
+
# Output only. The resource name for this DisplayVideo360AdvertiserLinkProposal
|
1057
|
+
# resource. Format: properties/`propertyId`/
|
1058
|
+
# displayVideo360AdvertiserLinkProposals/`proposalId` Note: proposalId is not
|
1059
|
+
# the Display & Video 360 Advertiser ID
|
1060
|
+
# Corresponds to the JSON property `name`
|
1061
|
+
# @return [String]
|
1062
|
+
attr_accessor :name
|
1063
|
+
|
1064
|
+
# Input only. On a proposal being sent to Display & Video 360, this field must
|
1065
|
+
# be set to the email address of an admin on the target advertiser. This is used
|
1066
|
+
# to verify that the Google Analytics admin is aware of at least one admin on
|
1067
|
+
# the Display & Video 360 Advertiser. This does not restrict approval of the
|
1068
|
+
# proposal to a single user. Any admin on the Display & Video 360 Advertiser may
|
1069
|
+
# approve the proposal.
|
1070
|
+
# Corresponds to the JSON property `validationEmail`
|
1071
|
+
# @return [String]
|
1072
|
+
attr_accessor :validation_email
|
1073
|
+
|
1074
|
+
def initialize(**args)
|
1075
|
+
update!(**args)
|
1076
|
+
end
|
1077
|
+
|
1078
|
+
# Update properties of this object
|
1079
|
+
def update!(**args)
|
1080
|
+
@ads_personalization_enabled = args[:ads_personalization_enabled] if args.key?(:ads_personalization_enabled)
|
1081
|
+
@advertiser_display_name = args[:advertiser_display_name] if args.key?(:advertiser_display_name)
|
1082
|
+
@advertiser_id = args[:advertiser_id] if args.key?(:advertiser_id)
|
1083
|
+
@campaign_data_sharing_enabled = args[:campaign_data_sharing_enabled] if args.key?(:campaign_data_sharing_enabled)
|
1084
|
+
@cost_data_sharing_enabled = args[:cost_data_sharing_enabled] if args.key?(:cost_data_sharing_enabled)
|
1085
|
+
@link_proposal_status_details = args[:link_proposal_status_details] if args.key?(:link_proposal_status_details)
|
1086
|
+
@name = args[:name] if args.key?(:name)
|
1087
|
+
@validation_email = args[:validation_email] if args.key?(:validation_email)
|
1088
|
+
end
|
1089
|
+
end
|
1090
|
+
|
889
1091
|
# Singleton resource under a WebDataStream, configuring measurement of
|
890
1092
|
# additional site interactions and content.
|
891
1093
|
class GoogleAnalyticsAdminV1alphaEnhancedMeasurementSettings
|
@@ -1204,6 +1406,37 @@ module Google
|
|
1204
1406
|
end
|
1205
1407
|
end
|
1206
1408
|
|
1409
|
+
# Status information for a link proposal.
|
1410
|
+
class GoogleAnalyticsAdminV1alphaLinkProposalStatusDetails
|
1411
|
+
include Google::Apis::Core::Hashable
|
1412
|
+
|
1413
|
+
# Output only. The source of this proposal.
|
1414
|
+
# Corresponds to the JSON property `linkProposalInitiatingProduct`
|
1415
|
+
# @return [String]
|
1416
|
+
attr_accessor :link_proposal_initiating_product
|
1417
|
+
|
1418
|
+
# Output only. The state of this proposal.
|
1419
|
+
# Corresponds to the JSON property `linkProposalState`
|
1420
|
+
# @return [String]
|
1421
|
+
attr_accessor :link_proposal_state
|
1422
|
+
|
1423
|
+
# Output only. The email address of the user that proposed this linkage.
|
1424
|
+
# Corresponds to the JSON property `requestorEmail`
|
1425
|
+
# @return [String]
|
1426
|
+
attr_accessor :requestor_email
|
1427
|
+
|
1428
|
+
def initialize(**args)
|
1429
|
+
update!(**args)
|
1430
|
+
end
|
1431
|
+
|
1432
|
+
# Update properties of this object
|
1433
|
+
def update!(**args)
|
1434
|
+
@link_proposal_initiating_product = args[:link_proposal_initiating_product] if args.key?(:link_proposal_initiating_product)
|
1435
|
+
@link_proposal_state = args[:link_proposal_state] if args.key?(:link_proposal_state)
|
1436
|
+
@requestor_email = args[:requestor_email] if args.key?(:requestor_email)
|
1437
|
+
end
|
1438
|
+
end
|
1439
|
+
|
1207
1440
|
# Response message for ListAccountSummaries RPC.
|
1208
1441
|
class GoogleAnalyticsAdminV1alphaListAccountSummariesResponse
|
1209
1442
|
include Google::Apis::Core::Hashable
|
@@ -1360,6 +1593,58 @@ module Google
|
|
1360
1593
|
end
|
1361
1594
|
end
|
1362
1595
|
|
1596
|
+
# Response message for ListDisplayVideo360AdvertiserLinkProposals RPC.
|
1597
|
+
class GoogleAnalyticsAdminV1alphaListDisplayVideo360AdvertiserLinkProposalsResponse
|
1598
|
+
include Google::Apis::Core::Hashable
|
1599
|
+
|
1600
|
+
# List of DisplayVideo360AdvertiserLinkProposals.
|
1601
|
+
# Corresponds to the JSON property `displayVideo360AdvertiserLinkProposals`
|
1602
|
+
# @return [Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLinkProposal>]
|
1603
|
+
attr_accessor :display_video360_advertiser_link_proposals
|
1604
|
+
|
1605
|
+
# A token, which can be sent as `page_token` to retrieve the next page. If this
|
1606
|
+
# field is omitted, there are no subsequent pages.
|
1607
|
+
# Corresponds to the JSON property `nextPageToken`
|
1608
|
+
# @return [String]
|
1609
|
+
attr_accessor :next_page_token
|
1610
|
+
|
1611
|
+
def initialize(**args)
|
1612
|
+
update!(**args)
|
1613
|
+
end
|
1614
|
+
|
1615
|
+
# Update properties of this object
|
1616
|
+
def update!(**args)
|
1617
|
+
@display_video360_advertiser_link_proposals = args[:display_video360_advertiser_link_proposals] if args.key?(:display_video360_advertiser_link_proposals)
|
1618
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
1619
|
+
end
|
1620
|
+
end
|
1621
|
+
|
1622
|
+
# Response message for ListDisplayVideo360AdvertiserLinks RPC.
|
1623
|
+
class GoogleAnalyticsAdminV1alphaListDisplayVideo360AdvertiserLinksResponse
|
1624
|
+
include Google::Apis::Core::Hashable
|
1625
|
+
|
1626
|
+
# List of DisplayVideo360AdvertiserLinks.
|
1627
|
+
# Corresponds to the JSON property `displayVideo360AdvertiserLinks`
|
1628
|
+
# @return [Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLink>]
|
1629
|
+
attr_accessor :display_video360_advertiser_links
|
1630
|
+
|
1631
|
+
# A token, which can be sent as `page_token` to retrieve the next page. If this
|
1632
|
+
# field is omitted, there are no subsequent pages.
|
1633
|
+
# Corresponds to the JSON property `nextPageToken`
|
1634
|
+
# @return [String]
|
1635
|
+
attr_accessor :next_page_token
|
1636
|
+
|
1637
|
+
def initialize(**args)
|
1638
|
+
update!(**args)
|
1639
|
+
end
|
1640
|
+
|
1641
|
+
# Update properties of this object
|
1642
|
+
def update!(**args)
|
1643
|
+
@display_video360_advertiser_links = args[:display_video360_advertiser_links] if args.key?(:display_video360_advertiser_links)
|
1644
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
1645
|
+
end
|
1646
|
+
end
|
1647
|
+
|
1363
1648
|
# Response message for ListFirebaseLinks RPC
|
1364
1649
|
class GoogleAnalyticsAdminV1alphaListFirebaseLinksResponse
|
1365
1650
|
include Google::Apis::Core::Hashable
|
@@ -1630,6 +1915,11 @@ module Google
|
|
1630
1915
|
# @return [String]
|
1631
1916
|
attr_accessor :parent
|
1632
1917
|
|
1918
|
+
# Output only. The Google Analytics service level that applies to this property.
|
1919
|
+
# Corresponds to the JSON property `serviceLevel`
|
1920
|
+
# @return [String]
|
1921
|
+
attr_accessor :service_level
|
1922
|
+
|
1633
1923
|
# Required. Reporting Time Zone, used as the day boundary for reports,
|
1634
1924
|
# regardless of where the data originates. If the time zone honors DST,
|
1635
1925
|
# Analytics will automatically adjust for the changes. NOTE: Changing the time
|
@@ -1658,6 +1948,7 @@ module Google
|
|
1658
1948
|
@industry_category = args[:industry_category] if args.key?(:industry_category)
|
1659
1949
|
@name = args[:name] if args.key?(:name)
|
1660
1950
|
@parent = args[:parent] if args.key?(:parent)
|
1951
|
+
@service_level = args[:service_level] if args.key?(:service_level)
|
1661
1952
|
@time_zone = args[:time_zone] if args.key?(:time_zone)
|
1662
1953
|
@update_time = args[:update_time] if args.key?(:update_time)
|
1663
1954
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module AnalyticsadminV1alpha
|
18
18
|
# Version of the google-apis-analyticsadmin_v1alpha gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.12.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210712"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -40,6 +40,18 @@ module Google
|
|
40
40
|
include Google::Apis::Core::JsonObjectSupport
|
41
41
|
end
|
42
42
|
|
43
|
+
class GoogleAnalyticsAdminV1alphaApproveDisplayVideo360AdvertiserLinkProposalRequest
|
44
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
45
|
+
|
46
|
+
include Google::Apis::Core::JsonObjectSupport
|
47
|
+
end
|
48
|
+
|
49
|
+
class GoogleAnalyticsAdminV1alphaApproveDisplayVideo360AdvertiserLinkProposalResponse
|
50
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
51
|
+
|
52
|
+
include Google::Apis::Core::JsonObjectSupport
|
53
|
+
end
|
54
|
+
|
43
55
|
class GoogleAnalyticsAdminV1alphaArchiveCustomDimensionRequest
|
44
56
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
45
57
|
|
@@ -106,6 +118,12 @@ module Google
|
|
106
118
|
include Google::Apis::Core::JsonObjectSupport
|
107
119
|
end
|
108
120
|
|
121
|
+
class GoogleAnalyticsAdminV1alphaCancelDisplayVideo360AdvertiserLinkProposalRequest
|
122
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
123
|
+
|
124
|
+
include Google::Apis::Core::JsonObjectSupport
|
125
|
+
end
|
126
|
+
|
109
127
|
class GoogleAnalyticsAdminV1alphaChangeHistoryChange
|
110
128
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
111
129
|
|
@@ -160,6 +178,18 @@ module Google
|
|
160
178
|
include Google::Apis::Core::JsonObjectSupport
|
161
179
|
end
|
162
180
|
|
181
|
+
class GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLink
|
182
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
183
|
+
|
184
|
+
include Google::Apis::Core::JsonObjectSupport
|
185
|
+
end
|
186
|
+
|
187
|
+
class GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLinkProposal
|
188
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
|
+
|
190
|
+
include Google::Apis::Core::JsonObjectSupport
|
191
|
+
end
|
192
|
+
|
163
193
|
class GoogleAnalyticsAdminV1alphaEnhancedMeasurementSettings
|
164
194
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
165
195
|
|
@@ -196,6 +226,12 @@ module Google
|
|
196
226
|
include Google::Apis::Core::JsonObjectSupport
|
197
227
|
end
|
198
228
|
|
229
|
+
class GoogleAnalyticsAdminV1alphaLinkProposalStatusDetails
|
230
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
231
|
+
|
232
|
+
include Google::Apis::Core::JsonObjectSupport
|
233
|
+
end
|
234
|
+
|
199
235
|
class GoogleAnalyticsAdminV1alphaListAccountSummariesResponse
|
200
236
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
201
237
|
|
@@ -232,6 +268,18 @@ module Google
|
|
232
268
|
include Google::Apis::Core::JsonObjectSupport
|
233
269
|
end
|
234
270
|
|
271
|
+
class GoogleAnalyticsAdminV1alphaListDisplayVideo360AdvertiserLinkProposalsResponse
|
272
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
273
|
+
|
274
|
+
include Google::Apis::Core::JsonObjectSupport
|
275
|
+
end
|
276
|
+
|
277
|
+
class GoogleAnalyticsAdminV1alphaListDisplayVideo360AdvertiserLinksResponse
|
278
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
279
|
+
|
280
|
+
include Google::Apis::Core::JsonObjectSupport
|
281
|
+
end
|
282
|
+
|
235
283
|
class GoogleAnalyticsAdminV1alphaListFirebaseLinksResponse
|
236
284
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
237
285
|
|
@@ -375,6 +423,20 @@ module Google
|
|
375
423
|
end
|
376
424
|
end
|
377
425
|
|
426
|
+
class GoogleAnalyticsAdminV1alphaApproveDisplayVideo360AdvertiserLinkProposalRequest
|
427
|
+
# @private
|
428
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
429
|
+
end
|
430
|
+
end
|
431
|
+
|
432
|
+
class GoogleAnalyticsAdminV1alphaApproveDisplayVideo360AdvertiserLinkProposalResponse
|
433
|
+
# @private
|
434
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
435
|
+
property :display_video360_advertiser_link, as: 'displayVideo360AdvertiserLink', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLink, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLink::Representation
|
436
|
+
|
437
|
+
end
|
438
|
+
end
|
439
|
+
|
378
440
|
class GoogleAnalyticsAdminV1alphaArchiveCustomDimensionRequest
|
379
441
|
# @private
|
380
442
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -463,6 +525,12 @@ module Google
|
|
463
525
|
end
|
464
526
|
end
|
465
527
|
|
528
|
+
class GoogleAnalyticsAdminV1alphaCancelDisplayVideo360AdvertiserLinkProposalRequest
|
529
|
+
# @private
|
530
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
531
|
+
end
|
532
|
+
end
|
533
|
+
|
466
534
|
class GoogleAnalyticsAdminV1alphaChangeHistoryChange
|
467
535
|
# @private
|
468
536
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -488,6 +556,10 @@ module Google
|
|
488
556
|
|
489
557
|
property :custom_metric, as: 'customMetric', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaCustomMetric, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaCustomMetric::Representation
|
490
558
|
|
559
|
+
property :display_video360_advertiser_link, as: 'displayVideo360AdvertiserLink', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLink, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLink::Representation
|
560
|
+
|
561
|
+
property :display_video360_advertiser_link_proposal, as: 'displayVideo360AdvertiserLinkProposal', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLinkProposal, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLinkProposal::Representation
|
562
|
+
|
491
563
|
property :firebase_link, as: 'firebaseLink', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaFirebaseLink, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaFirebaseLink::Representation
|
492
564
|
|
493
565
|
property :google_ads_link, as: 'googleAdsLink', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaGoogleAdsLink, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaGoogleAdsLink::Representation
|
@@ -582,6 +654,33 @@ module Google
|
|
582
654
|
end
|
583
655
|
end
|
584
656
|
|
657
|
+
class GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLink
|
658
|
+
# @private
|
659
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
660
|
+
property :ads_personalization_enabled, as: 'adsPersonalizationEnabled'
|
661
|
+
property :advertiser_display_name, as: 'advertiserDisplayName'
|
662
|
+
property :advertiser_id, as: 'advertiserId'
|
663
|
+
property :campaign_data_sharing_enabled, as: 'campaignDataSharingEnabled'
|
664
|
+
property :cost_data_sharing_enabled, as: 'costDataSharingEnabled'
|
665
|
+
property :name, as: 'name'
|
666
|
+
end
|
667
|
+
end
|
668
|
+
|
669
|
+
class GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLinkProposal
|
670
|
+
# @private
|
671
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
672
|
+
property :ads_personalization_enabled, as: 'adsPersonalizationEnabled'
|
673
|
+
property :advertiser_display_name, as: 'advertiserDisplayName'
|
674
|
+
property :advertiser_id, as: 'advertiserId'
|
675
|
+
property :campaign_data_sharing_enabled, as: 'campaignDataSharingEnabled'
|
676
|
+
property :cost_data_sharing_enabled, as: 'costDataSharingEnabled'
|
677
|
+
property :link_proposal_status_details, as: 'linkProposalStatusDetails', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaLinkProposalStatusDetails, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaLinkProposalStatusDetails::Representation
|
678
|
+
|
679
|
+
property :name, as: 'name'
|
680
|
+
property :validation_email, as: 'validationEmail'
|
681
|
+
end
|
682
|
+
end
|
683
|
+
|
585
684
|
class GoogleAnalyticsAdminV1alphaEnhancedMeasurementSettings
|
586
685
|
# @private
|
587
686
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -651,6 +750,15 @@ module Google
|
|
651
750
|
end
|
652
751
|
end
|
653
752
|
|
753
|
+
class GoogleAnalyticsAdminV1alphaLinkProposalStatusDetails
|
754
|
+
# @private
|
755
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
756
|
+
property :link_proposal_initiating_product, as: 'linkProposalInitiatingProduct'
|
757
|
+
property :link_proposal_state, as: 'linkProposalState'
|
758
|
+
property :requestor_email, as: 'requestorEmail'
|
759
|
+
end
|
760
|
+
end
|
761
|
+
|
654
762
|
class GoogleAnalyticsAdminV1alphaListAccountSummariesResponse
|
655
763
|
# @private
|
656
764
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -705,6 +813,24 @@ module Google
|
|
705
813
|
end
|
706
814
|
end
|
707
815
|
|
816
|
+
class GoogleAnalyticsAdminV1alphaListDisplayVideo360AdvertiserLinkProposalsResponse
|
817
|
+
# @private
|
818
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
819
|
+
collection :display_video360_advertiser_link_proposals, as: 'displayVideo360AdvertiserLinkProposals', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLinkProposal, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLinkProposal::Representation
|
820
|
+
|
821
|
+
property :next_page_token, as: 'nextPageToken'
|
822
|
+
end
|
823
|
+
end
|
824
|
+
|
825
|
+
class GoogleAnalyticsAdminV1alphaListDisplayVideo360AdvertiserLinksResponse
|
826
|
+
# @private
|
827
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
828
|
+
collection :display_video360_advertiser_links, as: 'displayVideo360AdvertiserLinks', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLink, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLink::Representation
|
829
|
+
|
830
|
+
property :next_page_token, as: 'nextPageToken'
|
831
|
+
end
|
832
|
+
end
|
833
|
+
|
708
834
|
class GoogleAnalyticsAdminV1alphaListFirebaseLinksResponse
|
709
835
|
# @private
|
710
836
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -788,6 +914,7 @@ module Google
|
|
788
914
|
property :industry_category, as: 'industryCategory'
|
789
915
|
property :name, as: 'name'
|
790
916
|
property :parent, as: 'parent'
|
917
|
+
property :service_level, as: 'serviceLevel'
|
791
918
|
property :time_zone, as: 'timeZone'
|
792
919
|
property :update_time, as: 'updateTime'
|
793
920
|
end
|
@@ -1777,6 +1777,397 @@ module Google
|
|
1777
1777
|
execute_or_queue_command(command, &block)
|
1778
1778
|
end
|
1779
1779
|
|
1780
|
+
# Approves a DisplayVideo360AdvertiserLinkProposal. The
|
1781
|
+
# DisplayVideo360AdvertiserLinkProposal will be deleted and a new
|
1782
|
+
# DisplayVideo360AdvertiserLink will be created.
|
1783
|
+
# @param [String] name
|
1784
|
+
# Required. The name of the DisplayVideo360AdvertiserLinkProposal to approve.
|
1785
|
+
# Example format: properties/1234/displayVideo360AdvertiserLinkProposals/5678
|
1786
|
+
# @param [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaApproveDisplayVideo360AdvertiserLinkProposalRequest] google_analytics_admin_v1alpha_approve_display_video360_advertiser_link_proposal_request_object
|
1787
|
+
# @param [String] fields
|
1788
|
+
# Selector specifying which fields to include in a partial response.
|
1789
|
+
# @param [String] quota_user
|
1790
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1791
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1792
|
+
# @param [Google::Apis::RequestOptions] options
|
1793
|
+
# Request-specific options
|
1794
|
+
#
|
1795
|
+
# @yield [result, err] Result & error if block supplied
|
1796
|
+
# @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaApproveDisplayVideo360AdvertiserLinkProposalResponse] parsed result object
|
1797
|
+
# @yieldparam err [StandardError] error object if request failed
|
1798
|
+
#
|
1799
|
+
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaApproveDisplayVideo360AdvertiserLinkProposalResponse]
|
1800
|
+
#
|
1801
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1802
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1803
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1804
|
+
def approve_property_display_video360_advertiser_link_proposal(name, google_analytics_admin_v1alpha_approve_display_video360_advertiser_link_proposal_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
1805
|
+
command = make_simple_command(:post, 'v1alpha/{+name}:approve', options)
|
1806
|
+
command.request_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaApproveDisplayVideo360AdvertiserLinkProposalRequest::Representation
|
1807
|
+
command.request_object = google_analytics_admin_v1alpha_approve_display_video360_advertiser_link_proposal_request_object
|
1808
|
+
command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaApproveDisplayVideo360AdvertiserLinkProposalResponse::Representation
|
1809
|
+
command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaApproveDisplayVideo360AdvertiserLinkProposalResponse
|
1810
|
+
command.params['name'] = name unless name.nil?
|
1811
|
+
command.query['fields'] = fields unless fields.nil?
|
1812
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1813
|
+
execute_or_queue_command(command, &block)
|
1814
|
+
end
|
1815
|
+
|
1816
|
+
# Cancels a DisplayVideo360AdvertiserLinkProposal. Cancelling can mean either: -
|
1817
|
+
# Declining a proposal initiated from Display & Video 360 - Withdrawing a
|
1818
|
+
# proposal initiated from Google Analytics After being cancelled, a proposal
|
1819
|
+
# will eventually be deleted automatically.
|
1820
|
+
# @param [String] name
|
1821
|
+
# Required. The name of the DisplayVideo360AdvertiserLinkProposal to cancel.
|
1822
|
+
# Example format: properties/1234/displayVideo360AdvertiserLinkProposals/5678
|
1823
|
+
# @param [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaCancelDisplayVideo360AdvertiserLinkProposalRequest] google_analytics_admin_v1alpha_cancel_display_video360_advertiser_link_proposal_request_object
|
1824
|
+
# @param [String] fields
|
1825
|
+
# Selector specifying which fields to include in a partial response.
|
1826
|
+
# @param [String] quota_user
|
1827
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1828
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1829
|
+
# @param [Google::Apis::RequestOptions] options
|
1830
|
+
# Request-specific options
|
1831
|
+
#
|
1832
|
+
# @yield [result, err] Result & error if block supplied
|
1833
|
+
# @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLinkProposal] parsed result object
|
1834
|
+
# @yieldparam err [StandardError] error object if request failed
|
1835
|
+
#
|
1836
|
+
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLinkProposal]
|
1837
|
+
#
|
1838
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1839
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1840
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1841
|
+
def cancel_property_display_video360_advertiser_link_proposal(name, google_analytics_admin_v1alpha_cancel_display_video360_advertiser_link_proposal_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
1842
|
+
command = make_simple_command(:post, 'v1alpha/{+name}:cancel', options)
|
1843
|
+
command.request_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaCancelDisplayVideo360AdvertiserLinkProposalRequest::Representation
|
1844
|
+
command.request_object = google_analytics_admin_v1alpha_cancel_display_video360_advertiser_link_proposal_request_object
|
1845
|
+
command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLinkProposal::Representation
|
1846
|
+
command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLinkProposal
|
1847
|
+
command.params['name'] = name unless name.nil?
|
1848
|
+
command.query['fields'] = fields unless fields.nil?
|
1849
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1850
|
+
execute_or_queue_command(command, &block)
|
1851
|
+
end
|
1852
|
+
|
1853
|
+
# Creates a DisplayVideo360AdvertiserLinkProposal.
|
1854
|
+
# @param [String] parent
|
1855
|
+
# Required. Example format: properties/1234
|
1856
|
+
# @param [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLinkProposal] google_analytics_admin_v1alpha_display_video360_advertiser_link_proposal_object
|
1857
|
+
# @param [String] fields
|
1858
|
+
# Selector specifying which fields to include in a partial response.
|
1859
|
+
# @param [String] quota_user
|
1860
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1861
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1862
|
+
# @param [Google::Apis::RequestOptions] options
|
1863
|
+
# Request-specific options
|
1864
|
+
#
|
1865
|
+
# @yield [result, err] Result & error if block supplied
|
1866
|
+
# @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLinkProposal] parsed result object
|
1867
|
+
# @yieldparam err [StandardError] error object if request failed
|
1868
|
+
#
|
1869
|
+
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLinkProposal]
|
1870
|
+
#
|
1871
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1872
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1873
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1874
|
+
def create_property_display_video360_advertiser_link_proposal(parent, google_analytics_admin_v1alpha_display_video360_advertiser_link_proposal_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
1875
|
+
command = make_simple_command(:post, 'v1alpha/{+parent}/displayVideo360AdvertiserLinkProposals', options)
|
1876
|
+
command.request_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLinkProposal::Representation
|
1877
|
+
command.request_object = google_analytics_admin_v1alpha_display_video360_advertiser_link_proposal_object
|
1878
|
+
command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLinkProposal::Representation
|
1879
|
+
command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLinkProposal
|
1880
|
+
command.params['parent'] = parent unless parent.nil?
|
1881
|
+
command.query['fields'] = fields unless fields.nil?
|
1882
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1883
|
+
execute_or_queue_command(command, &block)
|
1884
|
+
end
|
1885
|
+
|
1886
|
+
# Deletes a DisplayVideo360AdvertiserLinkProposal on a property. This can only
|
1887
|
+
# be used on cancelled proposals.
|
1888
|
+
# @param [String] name
|
1889
|
+
# Required. The name of the DisplayVideo360AdvertiserLinkProposal to delete.
|
1890
|
+
# Example format: properties/1234/displayVideo360AdvertiserLinkProposals/5678
|
1891
|
+
# @param [String] fields
|
1892
|
+
# Selector specifying which fields to include in a partial response.
|
1893
|
+
# @param [String] quota_user
|
1894
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1895
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1896
|
+
# @param [Google::Apis::RequestOptions] options
|
1897
|
+
# Request-specific options
|
1898
|
+
#
|
1899
|
+
# @yield [result, err] Result & error if block supplied
|
1900
|
+
# @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleProtobufEmpty] parsed result object
|
1901
|
+
# @yieldparam err [StandardError] error object if request failed
|
1902
|
+
#
|
1903
|
+
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleProtobufEmpty]
|
1904
|
+
#
|
1905
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1906
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1907
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1908
|
+
def delete_property_display_video360_advertiser_link_proposal(name, fields: nil, quota_user: nil, options: nil, &block)
|
1909
|
+
command = make_simple_command(:delete, 'v1alpha/{+name}', options)
|
1910
|
+
command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleProtobufEmpty::Representation
|
1911
|
+
command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleProtobufEmpty
|
1912
|
+
command.params['name'] = name unless name.nil?
|
1913
|
+
command.query['fields'] = fields unless fields.nil?
|
1914
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1915
|
+
execute_or_queue_command(command, &block)
|
1916
|
+
end
|
1917
|
+
|
1918
|
+
# Lookup for a single DisplayVideo360AdvertiserLinkProposal.
|
1919
|
+
# @param [String] name
|
1920
|
+
# Required. The name of the DisplayVideo360AdvertiserLinkProposal to get.
|
1921
|
+
# Example format: properties/1234/displayVideo360AdvertiserLinkProposals/5678
|
1922
|
+
# @param [String] fields
|
1923
|
+
# Selector specifying which fields to include in a partial response.
|
1924
|
+
# @param [String] quota_user
|
1925
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1926
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1927
|
+
# @param [Google::Apis::RequestOptions] options
|
1928
|
+
# Request-specific options
|
1929
|
+
#
|
1930
|
+
# @yield [result, err] Result & error if block supplied
|
1931
|
+
# @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLinkProposal] parsed result object
|
1932
|
+
# @yieldparam err [StandardError] error object if request failed
|
1933
|
+
#
|
1934
|
+
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLinkProposal]
|
1935
|
+
#
|
1936
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1937
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1938
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1939
|
+
def get_property_display_video360_advertiser_link_proposal(name, fields: nil, quota_user: nil, options: nil, &block)
|
1940
|
+
command = make_simple_command(:get, 'v1alpha/{+name}', options)
|
1941
|
+
command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLinkProposal::Representation
|
1942
|
+
command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLinkProposal
|
1943
|
+
command.params['name'] = name unless name.nil?
|
1944
|
+
command.query['fields'] = fields unless fields.nil?
|
1945
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1946
|
+
execute_or_queue_command(command, &block)
|
1947
|
+
end
|
1948
|
+
|
1949
|
+
# Lists DisplayVideo360AdvertiserLinkProposals on a property.
|
1950
|
+
# @param [String] parent
|
1951
|
+
# Required. Example format: properties/1234
|
1952
|
+
# @param [Fixnum] page_size
|
1953
|
+
# The maximum number of resources to return. If unspecified, at most 50
|
1954
|
+
# resources will be returned. The maximum value is 200 (higher values will be
|
1955
|
+
# coerced to the maximum).
|
1956
|
+
# @param [String] page_token
|
1957
|
+
# A page token, received from a previous `
|
1958
|
+
# ListDisplayVideo360AdvertiserLinkProposals` call. Provide this to retrieve the
|
1959
|
+
# subsequent page. When paginating, all other parameters provided to `
|
1960
|
+
# ListDisplayVideo360AdvertiserLinkProposals` must match the call that provided
|
1961
|
+
# the page token.
|
1962
|
+
# @param [String] fields
|
1963
|
+
# Selector specifying which fields to include in a partial response.
|
1964
|
+
# @param [String] quota_user
|
1965
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1966
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1967
|
+
# @param [Google::Apis::RequestOptions] options
|
1968
|
+
# Request-specific options
|
1969
|
+
#
|
1970
|
+
# @yield [result, err] Result & error if block supplied
|
1971
|
+
# @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListDisplayVideo360AdvertiserLinkProposalsResponse] parsed result object
|
1972
|
+
# @yieldparam err [StandardError] error object if request failed
|
1973
|
+
#
|
1974
|
+
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListDisplayVideo360AdvertiserLinkProposalsResponse]
|
1975
|
+
#
|
1976
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1977
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1978
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1979
|
+
def list_property_display_video360_advertiser_link_proposals(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1980
|
+
command = make_simple_command(:get, 'v1alpha/{+parent}/displayVideo360AdvertiserLinkProposals', options)
|
1981
|
+
command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListDisplayVideo360AdvertiserLinkProposalsResponse::Representation
|
1982
|
+
command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListDisplayVideo360AdvertiserLinkProposalsResponse
|
1983
|
+
command.params['parent'] = parent unless parent.nil?
|
1984
|
+
command.query['pageSize'] = page_size unless page_size.nil?
|
1985
|
+
command.query['pageToken'] = page_token unless page_token.nil?
|
1986
|
+
command.query['fields'] = fields unless fields.nil?
|
1987
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1988
|
+
execute_or_queue_command(command, &block)
|
1989
|
+
end
|
1990
|
+
|
1991
|
+
# Creates a DisplayVideo360AdvertiserLink. This can only be utilized by users
|
1992
|
+
# who have proper authorization both on the Google Analytics property and on the
|
1993
|
+
# Display & Video 360 advertiser. Users who do not have access to the Display &
|
1994
|
+
# Video 360 advertiser should instead seek to create a
|
1995
|
+
# DisplayVideo360LinkProposal.
|
1996
|
+
# @param [String] parent
|
1997
|
+
# Required. Example format: properties/1234
|
1998
|
+
# @param [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLink] google_analytics_admin_v1alpha_display_video360_advertiser_link_object
|
1999
|
+
# @param [String] fields
|
2000
|
+
# Selector specifying which fields to include in a partial response.
|
2001
|
+
# @param [String] quota_user
|
2002
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
2003
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
2004
|
+
# @param [Google::Apis::RequestOptions] options
|
2005
|
+
# Request-specific options
|
2006
|
+
#
|
2007
|
+
# @yield [result, err] Result & error if block supplied
|
2008
|
+
# @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLink] parsed result object
|
2009
|
+
# @yieldparam err [StandardError] error object if request failed
|
2010
|
+
#
|
2011
|
+
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLink]
|
2012
|
+
#
|
2013
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2014
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2015
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2016
|
+
def create_property_display_video360_advertiser_link(parent, google_analytics_admin_v1alpha_display_video360_advertiser_link_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
2017
|
+
command = make_simple_command(:post, 'v1alpha/{+parent}/displayVideo360AdvertiserLinks', options)
|
2018
|
+
command.request_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLink::Representation
|
2019
|
+
command.request_object = google_analytics_admin_v1alpha_display_video360_advertiser_link_object
|
2020
|
+
command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLink::Representation
|
2021
|
+
command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLink
|
2022
|
+
command.params['parent'] = parent unless parent.nil?
|
2023
|
+
command.query['fields'] = fields unless fields.nil?
|
2024
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2025
|
+
execute_or_queue_command(command, &block)
|
2026
|
+
end
|
2027
|
+
|
2028
|
+
# Deletes a DisplayVideo360AdvertiserLink on a property.
|
2029
|
+
# @param [String] name
|
2030
|
+
# Required. The name of the DisplayVideo360AdvertiserLink to delete. Example
|
2031
|
+
# format: properties/1234/displayVideo360AdvertiserLinks/5678
|
2032
|
+
# @param [String] fields
|
2033
|
+
# Selector specifying which fields to include in a partial response.
|
2034
|
+
# @param [String] quota_user
|
2035
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
2036
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
2037
|
+
# @param [Google::Apis::RequestOptions] options
|
2038
|
+
# Request-specific options
|
2039
|
+
#
|
2040
|
+
# @yield [result, err] Result & error if block supplied
|
2041
|
+
# @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleProtobufEmpty] parsed result object
|
2042
|
+
# @yieldparam err [StandardError] error object if request failed
|
2043
|
+
#
|
2044
|
+
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleProtobufEmpty]
|
2045
|
+
#
|
2046
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2047
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2048
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2049
|
+
def delete_property_display_video360_advertiser_link(name, fields: nil, quota_user: nil, options: nil, &block)
|
2050
|
+
command = make_simple_command(:delete, 'v1alpha/{+name}', options)
|
2051
|
+
command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleProtobufEmpty::Representation
|
2052
|
+
command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleProtobufEmpty
|
2053
|
+
command.params['name'] = name unless name.nil?
|
2054
|
+
command.query['fields'] = fields unless fields.nil?
|
2055
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2056
|
+
execute_or_queue_command(command, &block)
|
2057
|
+
end
|
2058
|
+
|
2059
|
+
# Look up a single DisplayVideo360AdvertiserLink
|
2060
|
+
# @param [String] name
|
2061
|
+
# Required. The name of the DisplayVideo360AdvertiserLink to get. Example format:
|
2062
|
+
# properties/1234/displayVideo360AdvertiserLink/5678
|
2063
|
+
# @param [String] fields
|
2064
|
+
# Selector specifying which fields to include in a partial response.
|
2065
|
+
# @param [String] quota_user
|
2066
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
2067
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
2068
|
+
# @param [Google::Apis::RequestOptions] options
|
2069
|
+
# Request-specific options
|
2070
|
+
#
|
2071
|
+
# @yield [result, err] Result & error if block supplied
|
2072
|
+
# @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLink] parsed result object
|
2073
|
+
# @yieldparam err [StandardError] error object if request failed
|
2074
|
+
#
|
2075
|
+
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLink]
|
2076
|
+
#
|
2077
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2078
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2079
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2080
|
+
def get_property_display_video360_advertiser_link(name, fields: nil, quota_user: nil, options: nil, &block)
|
2081
|
+
command = make_simple_command(:get, 'v1alpha/{+name}', options)
|
2082
|
+
command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLink::Representation
|
2083
|
+
command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLink
|
2084
|
+
command.params['name'] = name unless name.nil?
|
2085
|
+
command.query['fields'] = fields unless fields.nil?
|
2086
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2087
|
+
execute_or_queue_command(command, &block)
|
2088
|
+
end
|
2089
|
+
|
2090
|
+
# Lists all DisplayVideo360AdvertiserLinks on a property.
|
2091
|
+
# @param [String] parent
|
2092
|
+
# Required. Example format: properties/1234
|
2093
|
+
# @param [Fixnum] page_size
|
2094
|
+
# The maximum number of resources to return. If unspecified, at most 50
|
2095
|
+
# resources will be returned. The maximum value is 200 (higher values will be
|
2096
|
+
# coerced to the maximum).
|
2097
|
+
# @param [String] page_token
|
2098
|
+
# A page token, received from a previous `ListDisplayVideo360AdvertiserLinks`
|
2099
|
+
# call. Provide this to retrieve the subsequent page. When paginating, all other
|
2100
|
+
# parameters provided to `ListDisplayVideo360AdvertiserLinks` must match the
|
2101
|
+
# call that provided the page token.
|
2102
|
+
# @param [String] fields
|
2103
|
+
# Selector specifying which fields to include in a partial response.
|
2104
|
+
# @param [String] quota_user
|
2105
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
2106
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
2107
|
+
# @param [Google::Apis::RequestOptions] options
|
2108
|
+
# Request-specific options
|
2109
|
+
#
|
2110
|
+
# @yield [result, err] Result & error if block supplied
|
2111
|
+
# @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListDisplayVideo360AdvertiserLinksResponse] parsed result object
|
2112
|
+
# @yieldparam err [StandardError] error object if request failed
|
2113
|
+
#
|
2114
|
+
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListDisplayVideo360AdvertiserLinksResponse]
|
2115
|
+
#
|
2116
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2117
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2118
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2119
|
+
def list_property_display_video360_advertiser_links(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2120
|
+
command = make_simple_command(:get, 'v1alpha/{+parent}/displayVideo360AdvertiserLinks', options)
|
2121
|
+
command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListDisplayVideo360AdvertiserLinksResponse::Representation
|
2122
|
+
command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListDisplayVideo360AdvertiserLinksResponse
|
2123
|
+
command.params['parent'] = parent unless parent.nil?
|
2124
|
+
command.query['pageSize'] = page_size unless page_size.nil?
|
2125
|
+
command.query['pageToken'] = page_token unless page_token.nil?
|
2126
|
+
command.query['fields'] = fields unless fields.nil?
|
2127
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2128
|
+
execute_or_queue_command(command, &block)
|
2129
|
+
end
|
2130
|
+
|
2131
|
+
# Updates a DisplayVideo360AdvertiserLink on a property.
|
2132
|
+
# @param [String] name
|
2133
|
+
# Output only. The resource name for this DisplayVideo360AdvertiserLink resource.
|
2134
|
+
# Format: properties/`propertyId`/displayVideo360AdvertiserLinks/`linkId` Note:
|
2135
|
+
# linkId is not the Display & Video 360 Advertiser ID
|
2136
|
+
# @param [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLink] google_analytics_admin_v1alpha_display_video360_advertiser_link_object
|
2137
|
+
# @param [String] update_mask
|
2138
|
+
# Required. The list of fields to be updated. Omitted fields will not be updated.
|
2139
|
+
# To replace the entire entity, use one path with the string "*" to match all
|
2140
|
+
# fields.
|
2141
|
+
# @param [String] fields
|
2142
|
+
# Selector specifying which fields to include in a partial response.
|
2143
|
+
# @param [String] quota_user
|
2144
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
2145
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
2146
|
+
# @param [Google::Apis::RequestOptions] options
|
2147
|
+
# Request-specific options
|
2148
|
+
#
|
2149
|
+
# @yield [result, err] Result & error if block supplied
|
2150
|
+
# @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLink] parsed result object
|
2151
|
+
# @yieldparam err [StandardError] error object if request failed
|
2152
|
+
#
|
2153
|
+
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLink]
|
2154
|
+
#
|
2155
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2156
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2157
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2158
|
+
def patch_property_display_video360_advertiser_link(name, google_analytics_admin_v1alpha_display_video360_advertiser_link_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2159
|
+
command = make_simple_command(:patch, 'v1alpha/{+name}', options)
|
2160
|
+
command.request_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLink::Representation
|
2161
|
+
command.request_object = google_analytics_admin_v1alpha_display_video360_advertiser_link_object
|
2162
|
+
command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLink::Representation
|
2163
|
+
command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLink
|
2164
|
+
command.params['name'] = name unless name.nil?
|
2165
|
+
command.query['updateMask'] = update_mask unless update_mask.nil?
|
2166
|
+
command.query['fields'] = fields unless fields.nil?
|
2167
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2168
|
+
execute_or_queue_command(command, &block)
|
2169
|
+
end
|
2170
|
+
|
1780
2171
|
# Creates a FirebaseLink. Properties can have at most one FirebaseLink.
|
1781
2172
|
# @param [String] parent
|
1782
2173
|
# Required. Format: properties/`property_id` Example: properties/1234
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-analyticsadmin_v1alpha
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.12.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: 2021-07-
|
11
|
+
date: 2021-07-19 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/master/generated/google-apis-analyticsadmin_v1alpha/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-analyticsadmin_v1alpha/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-analyticsadmin_v1alpha/v0.12.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-analyticsadmin_v1alpha
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|