google-apis-analyticsadmin_v1alpha 0.19.0 → 0.23.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0e21e1937f7fe6a03e441fc8eb900450aee46b6a401dc0191c90857397385b9a
4
- data.tar.gz: 9a0560077ed5d656e188f13ac07a4a74ba78dbcd5a2e05602bce113e87b7adb3
3
+ metadata.gz: ae57af596fdf10eaf388dd7206efcbb1be28f3992f1b64f8287a0d8880eaabee
4
+ data.tar.gz: 21a1e0a231879c269ad8f1599a59fdd47db730ccbe769b556eb2c1e1530df66c
5
5
  SHA512:
6
- metadata.gz: f2dc0ad58b52582287e3dcd919b49cff83aeae9225682c2a38b8808e3ad0efea1016ccfd68b2558541cf82c62ecbbcd6d9a02fd2b7323d03a44b6f2e6e9934b8
7
- data.tar.gz: 0cac4078e8e25a51ede5c6caabea180362532ed471b74c4099f2de88c76d743b9dd2a24fcbe25afcad9e35bc525ea14138ec3203c9405acf30c89f3aacf1fbd0
6
+ metadata.gz: 5b3717201f59cb4bb49ee78f0d7abeb7467d6f8b9a7b61120b04ea9b75facf30b13518669376470a56fa3cc78b44db22e4a2627cf0dbb6e976cc2235dab924ed
7
+ data.tar.gz: 559044f2fa43461a2a16471c4737c100614b82a4045b7080bec733b240c9e278d6e1845adee426a00086d53cdcd807e3175a4c9555c35d402d2c4a97003d9564
data/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # Release history for google-apis-analyticsadmin_v1alpha
2
2
 
3
+ ### v0.23.0 (2022-01-18)
4
+
5
+ * Regenerated from discovery document revision 20220116
6
+
7
+ ### v0.22.0 (2022-01-14)
8
+
9
+ * Regenerated from discovery document revision 20220112
10
+ * Regenerated using generator version 0.4.1
11
+
12
+ ### v0.21.0 (2022-01-07)
13
+
14
+ * Regenerated from discovery document revision 20220105
15
+
16
+ ### v0.20.0 (2021-12-02)
17
+
18
+ * Regenerated from discovery document revision 20211201
19
+
3
20
  ### v0.19.0 (2021-11-03)
4
21
 
5
22
  * Regenerated from discovery document revision 20211102
data/OVERVIEW.md CHANGED
@@ -51,7 +51,7 @@ require "google/apis/analyticsadmin_v1alpha"
51
51
  client = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminService.new
52
52
 
53
53
  # Authenticate calls
54
- client.authentication = # ... use the googleauth gem to create credentials
54
+ client.authorization = # ... use the googleauth gem to create credentials
55
55
  ```
56
56
 
57
57
  See the class reference docs for information on the methods you can call from a client.
@@ -151,60 +151,6 @@ module Google
151
151
  end
152
152
  end
153
153
 
154
- # A resource message representing a Google Analytics Android app stream.
155
- class GoogleAnalyticsAdminV1alphaAndroidAppDataStream
156
- include Google::Apis::Core::Hashable
157
-
158
- # Output only. Time when this stream was originally created.
159
- # Corresponds to the JSON property `createTime`
160
- # @return [String]
161
- attr_accessor :create_time
162
-
163
- # Human-readable display name for the Data Stream. The max allowed display name
164
- # length is 255 UTF-16 code units.
165
- # Corresponds to the JSON property `displayName`
166
- # @return [String]
167
- attr_accessor :display_name
168
-
169
- # Output only. ID of the corresponding Android app in Firebase, if any. This ID
170
- # can change if the Android app is deleted and recreated.
171
- # Corresponds to the JSON property `firebaseAppId`
172
- # @return [String]
173
- attr_accessor :firebase_app_id
174
-
175
- # Output only. Resource name of this Data Stream. Format: properties/`
176
- # property_id`/androidAppDataStreams/`stream_id` Example: "properties/1000/
177
- # androidAppDataStreams/2000"
178
- # Corresponds to the JSON property `name`
179
- # @return [String]
180
- attr_accessor :name
181
-
182
- # Immutable. The package name for the app being measured. Example: "com.example.
183
- # myandroidapp"
184
- # Corresponds to the JSON property `packageName`
185
- # @return [String]
186
- attr_accessor :package_name
187
-
188
- # Output only. Time when stream payload fields were last updated.
189
- # Corresponds to the JSON property `updateTime`
190
- # @return [String]
191
- attr_accessor :update_time
192
-
193
- def initialize(**args)
194
- update!(**args)
195
- end
196
-
197
- # Update properties of this object
198
- def update!(**args)
199
- @create_time = args[:create_time] if args.key?(:create_time)
200
- @display_name = args[:display_name] if args.key?(:display_name)
201
- @firebase_app_id = args[:firebase_app_id] if args.key?(:firebase_app_id)
202
- @name = args[:name] if args.key?(:name)
203
- @package_name = args[:package_name] if args.key?(:package_name)
204
- @update_time = args[:update_time] if args.key?(:update_time)
205
- end
206
- end
207
-
208
154
  # Request message for ApproveDisplayVideo360AdvertiserLinkProposal RPC.
209
155
  class GoogleAnalyticsAdminV1alphaApproveDisplayVideo360AdvertiserLinkProposalRequest
210
156
  include Google::Apis::Core::Hashable
@@ -548,11 +494,6 @@ module Google
548
494
  # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaAccount]
549
495
  attr_accessor :account
550
496
 
551
- # A resource message representing a Google Analytics Android app stream.
552
- # Corresponds to the JSON property `androidAppDataStream`
553
- # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaAndroidAppDataStream]
554
- attr_accessor :android_app_data_stream
555
-
556
497
  # A conversion event in a Google Analytics property.
557
498
  # Corresponds to the JSON property `conversionEvent`
558
499
  # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaConversionEvent]
@@ -573,6 +514,11 @@ module Google
573
514
  # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDataRetentionSettings]
574
515
  attr_accessor :data_retention_settings
575
516
 
517
+ # A resource message representing a data stream.
518
+ # Corresponds to the JSON property `dataStream`
519
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDataStream]
520
+ attr_accessor :data_stream
521
+
576
522
  # A link between a GA4 property and a Display & Video 360 advertiser.
577
523
  # Corresponds to the JSON property `displayVideo360AdvertiserLink`
578
524
  # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLink]
@@ -601,11 +547,6 @@ module Google
601
547
  # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaGoogleSignalsSettings]
602
548
  attr_accessor :google_signals_settings
603
549
 
604
- # A resource message representing a Google Analytics IOS app stream.
605
- # Corresponds to the JSON property `iosAppDataStream`
606
- # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaIosAppDataStream]
607
- attr_accessor :ios_app_data_stream
608
-
609
550
  # A secret value used for sending hits to Measurement Protocol.
610
551
  # Corresponds to the JSON property `measurementProtocolSecret`
611
552
  # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaMeasurementProtocolSecret]
@@ -616,11 +557,6 @@ module Google
616
557
  # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaProperty]
617
558
  attr_accessor :property
618
559
 
619
- # A resource message representing a Google Analytics web stream.
620
- # Corresponds to the JSON property `webDataStream`
621
- # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaWebDataStream]
622
- attr_accessor :web_data_stream
623
-
624
560
  def initialize(**args)
625
561
  update!(**args)
626
562
  end
@@ -628,20 +564,18 @@ module Google
628
564
  # Update properties of this object
629
565
  def update!(**args)
630
566
  @account = args[:account] if args.key?(:account)
631
- @android_app_data_stream = args[:android_app_data_stream] if args.key?(:android_app_data_stream)
632
567
  @conversion_event = args[:conversion_event] if args.key?(:conversion_event)
633
568
  @custom_dimension = args[:custom_dimension] if args.key?(:custom_dimension)
634
569
  @custom_metric = args[:custom_metric] if args.key?(:custom_metric)
635
570
  @data_retention_settings = args[:data_retention_settings] if args.key?(:data_retention_settings)
571
+ @data_stream = args[:data_stream] if args.key?(:data_stream)
636
572
  @display_video360_advertiser_link = args[:display_video360_advertiser_link] if args.key?(:display_video360_advertiser_link)
637
573
  @display_video360_advertiser_link_proposal = args[:display_video360_advertiser_link_proposal] if args.key?(:display_video360_advertiser_link_proposal)
638
574
  @firebase_link = args[:firebase_link] if args.key?(:firebase_link)
639
575
  @google_ads_link = args[:google_ads_link] if args.key?(:google_ads_link)
640
576
  @google_signals_settings = args[:google_signals_settings] if args.key?(:google_signals_settings)
641
- @ios_app_data_stream = args[:ios_app_data_stream] if args.key?(:ios_app_data_stream)
642
577
  @measurement_protocol_secret = args[:measurement_protocol_secret] if args.key?(:measurement_protocol_secret)
643
578
  @property = args[:property] if args.key?(:property)
644
- @web_data_stream = args[:web_data_stream] if args.key?(:web_data_stream)
645
579
  end
646
580
  end
647
581
 
@@ -891,6 +825,13 @@ module Google
891
825
  # @return [String]
892
826
  attr_accessor :parameter_name
893
827
 
828
+ # Optional. Types of restricted data that this metric may contain. Required for
829
+ # metrics with CURRENCY measurement unit. Must be empty for metrics with a non-
830
+ # CURRENCY measurement unit.
831
+ # Corresponds to the JSON property `restrictedMetricType`
832
+ # @return [Array<String>]
833
+ attr_accessor :restricted_metric_type
834
+
894
835
  # Required. Immutable. The scope of this custom metric.
895
836
  # Corresponds to the JSON property `scope`
896
837
  # @return [String]
@@ -907,6 +848,7 @@ module Google
907
848
  @measurement_unit = args[:measurement_unit] if args.key?(:measurement_unit)
908
849
  @name = args[:name] if args.key?(:name)
909
850
  @parameter_name = args[:parameter_name] if args.key?(:parameter_name)
851
+ @restricted_metric_type = args[:restricted_metric_type] if args.key?(:restricted_metric_type)
910
852
  @scope = args[:scope] if args.key?(:scope)
911
853
  end
912
854
  end
@@ -1004,6 +946,158 @@ module Google
1004
946
  end
1005
947
  end
1006
948
 
949
+ # A resource message representing a data stream.
950
+ class GoogleAnalyticsAdminV1alphaDataStream
951
+ include Google::Apis::Core::Hashable
952
+
953
+ # Data specific to Android app streams.
954
+ # Corresponds to the JSON property `androidAppStreamData`
955
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDataStreamAndroidAppStreamData]
956
+ attr_accessor :android_app_stream_data
957
+
958
+ # Output only. Time when this stream was originally created.
959
+ # Corresponds to the JSON property `createTime`
960
+ # @return [String]
961
+ attr_accessor :create_time
962
+
963
+ # Human-readable display name for the Data Stream. Required for web data streams.
964
+ # The max allowed display name length is 255 UTF-16 code units.
965
+ # Corresponds to the JSON property `displayName`
966
+ # @return [String]
967
+ attr_accessor :display_name
968
+
969
+ # Data specific to iOS app streams.
970
+ # Corresponds to the JSON property `iosAppStreamData`
971
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDataStreamIosAppStreamData]
972
+ attr_accessor :ios_app_stream_data
973
+
974
+ # Output only. Resource name of this Data Stream. Format: properties/`
975
+ # property_id`/dataStreams/`stream_id` Example: "properties/1000/dataStreams/
976
+ # 2000"
977
+ # Corresponds to the JSON property `name`
978
+ # @return [String]
979
+ attr_accessor :name
980
+
981
+ # Required. Immutable. The type of this DataStream resource.
982
+ # Corresponds to the JSON property `type`
983
+ # @return [String]
984
+ attr_accessor :type
985
+
986
+ # Output only. Time when stream payload fields were last updated.
987
+ # Corresponds to the JSON property `updateTime`
988
+ # @return [String]
989
+ attr_accessor :update_time
990
+
991
+ # Data specific to web streams.
992
+ # Corresponds to the JSON property `webStreamData`
993
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDataStreamWebStreamData]
994
+ attr_accessor :web_stream_data
995
+
996
+ def initialize(**args)
997
+ update!(**args)
998
+ end
999
+
1000
+ # Update properties of this object
1001
+ def update!(**args)
1002
+ @android_app_stream_data = args[:android_app_stream_data] if args.key?(:android_app_stream_data)
1003
+ @create_time = args[:create_time] if args.key?(:create_time)
1004
+ @display_name = args[:display_name] if args.key?(:display_name)
1005
+ @ios_app_stream_data = args[:ios_app_stream_data] if args.key?(:ios_app_stream_data)
1006
+ @name = args[:name] if args.key?(:name)
1007
+ @type = args[:type] if args.key?(:type)
1008
+ @update_time = args[:update_time] if args.key?(:update_time)
1009
+ @web_stream_data = args[:web_stream_data] if args.key?(:web_stream_data)
1010
+ end
1011
+ end
1012
+
1013
+ # Data specific to Android app streams.
1014
+ class GoogleAnalyticsAdminV1alphaDataStreamAndroidAppStreamData
1015
+ include Google::Apis::Core::Hashable
1016
+
1017
+ # Output only. ID of the corresponding Android app in Firebase, if any. This ID
1018
+ # can change if the Android app is deleted and recreated.
1019
+ # Corresponds to the JSON property `firebaseAppId`
1020
+ # @return [String]
1021
+ attr_accessor :firebase_app_id
1022
+
1023
+ # Immutable. The package name for the app being measured. Example: "com.example.
1024
+ # myandroidapp"
1025
+ # Corresponds to the JSON property `packageName`
1026
+ # @return [String]
1027
+ attr_accessor :package_name
1028
+
1029
+ def initialize(**args)
1030
+ update!(**args)
1031
+ end
1032
+
1033
+ # Update properties of this object
1034
+ def update!(**args)
1035
+ @firebase_app_id = args[:firebase_app_id] if args.key?(:firebase_app_id)
1036
+ @package_name = args[:package_name] if args.key?(:package_name)
1037
+ end
1038
+ end
1039
+
1040
+ # Data specific to iOS app streams.
1041
+ class GoogleAnalyticsAdminV1alphaDataStreamIosAppStreamData
1042
+ include Google::Apis::Core::Hashable
1043
+
1044
+ # Required. Immutable. The Apple App Store Bundle ID for the app Example: "com.
1045
+ # example.myiosapp"
1046
+ # Corresponds to the JSON property `bundleId`
1047
+ # @return [String]
1048
+ attr_accessor :bundle_id
1049
+
1050
+ # Output only. ID of the corresponding iOS app in Firebase, if any. This ID can
1051
+ # change if the iOS app is deleted and recreated.
1052
+ # Corresponds to the JSON property `firebaseAppId`
1053
+ # @return [String]
1054
+ attr_accessor :firebase_app_id
1055
+
1056
+ def initialize(**args)
1057
+ update!(**args)
1058
+ end
1059
+
1060
+ # Update properties of this object
1061
+ def update!(**args)
1062
+ @bundle_id = args[:bundle_id] if args.key?(:bundle_id)
1063
+ @firebase_app_id = args[:firebase_app_id] if args.key?(:firebase_app_id)
1064
+ end
1065
+ end
1066
+
1067
+ # Data specific to web streams.
1068
+ class GoogleAnalyticsAdminV1alphaDataStreamWebStreamData
1069
+ include Google::Apis::Core::Hashable
1070
+
1071
+ # Immutable. Domain name of the web app being measured, or empty. Example: "http:
1072
+ # //www.google.com", "https://www.google.com"
1073
+ # Corresponds to the JSON property `defaultUri`
1074
+ # @return [String]
1075
+ attr_accessor :default_uri
1076
+
1077
+ # Output only. ID of the corresponding web app in Firebase, if any. This ID can
1078
+ # change if the web app is deleted and recreated.
1079
+ # Corresponds to the JSON property `firebaseAppId`
1080
+ # @return [String]
1081
+ attr_accessor :firebase_app_id
1082
+
1083
+ # Output only. Analytics "Measurement ID", without the "G-" prefix. Example: "G-
1084
+ # 1A2BCD345E" would just be "1A2BCD345E"
1085
+ # Corresponds to the JSON property `measurementId`
1086
+ # @return [String]
1087
+ attr_accessor :measurement_id
1088
+
1089
+ def initialize(**args)
1090
+ update!(**args)
1091
+ end
1092
+
1093
+ # Update properties of this object
1094
+ def update!(**args)
1095
+ @default_uri = args[:default_uri] if args.key?(:default_uri)
1096
+ @firebase_app_id = args[:firebase_app_id] if args.key?(:firebase_app_id)
1097
+ @measurement_id = args[:measurement_id] if args.key?(:measurement_id)
1098
+ end
1099
+ end
1100
+
1007
1101
  # Request message for DeleteUserLink RPC.
1008
1102
  class GoogleAnalyticsAdminV1alphaDeleteUserLinkRequest
1009
1103
  include Google::Apis::Core::Hashable
@@ -1322,60 +1416,6 @@ module Google
1322
1416
  end
1323
1417
  end
1324
1418
 
1325
- # A resource message representing a Google Analytics IOS app stream.
1326
- class GoogleAnalyticsAdminV1alphaIosAppDataStream
1327
- include Google::Apis::Core::Hashable
1328
-
1329
- # Required. Immutable. The Apple App Store Bundle ID for the app Example: "com.
1330
- # example.myiosapp"
1331
- # Corresponds to the JSON property `bundleId`
1332
- # @return [String]
1333
- attr_accessor :bundle_id
1334
-
1335
- # Output only. Time when this stream was originally created.
1336
- # Corresponds to the JSON property `createTime`
1337
- # @return [String]
1338
- attr_accessor :create_time
1339
-
1340
- # Human-readable display name for the Data Stream. The max allowed display name
1341
- # length is 255 UTF-16 code units.
1342
- # Corresponds to the JSON property `displayName`
1343
- # @return [String]
1344
- attr_accessor :display_name
1345
-
1346
- # Output only. ID of the corresponding iOS app in Firebase, if any. This ID can
1347
- # change if the iOS app is deleted and recreated.
1348
- # Corresponds to the JSON property `firebaseAppId`
1349
- # @return [String]
1350
- attr_accessor :firebase_app_id
1351
-
1352
- # Output only. Resource name of this Data Stream. Format: properties/`
1353
- # property_id`/iosAppDataStreams/`stream_id` Example: "properties/1000/
1354
- # iosAppDataStreams/2000"
1355
- # Corresponds to the JSON property `name`
1356
- # @return [String]
1357
- attr_accessor :name
1358
-
1359
- # Output only. Time when stream payload fields were last updated.
1360
- # Corresponds to the JSON property `updateTime`
1361
- # @return [String]
1362
- attr_accessor :update_time
1363
-
1364
- def initialize(**args)
1365
- update!(**args)
1366
- end
1367
-
1368
- # Update properties of this object
1369
- def update!(**args)
1370
- @bundle_id = args[:bundle_id] if args.key?(:bundle_id)
1371
- @create_time = args[:create_time] if args.key?(:create_time)
1372
- @display_name = args[:display_name] if args.key?(:display_name)
1373
- @firebase_app_id = args[:firebase_app_id] if args.key?(:firebase_app_id)
1374
- @name = args[:name] if args.key?(:name)
1375
- @update_time = args[:update_time] if args.key?(:update_time)
1376
- end
1377
- end
1378
-
1379
1419
  # Status information for a link proposal.
1380
1420
  class GoogleAnalyticsAdminV1alphaLinkProposalStatusDetails
1381
1421
  include Google::Apis::Core::Hashable
@@ -1459,32 +1499,6 @@ module Google
1459
1499
  end
1460
1500
  end
1461
1501
 
1462
- # Request message for ListAndroidDataStreams RPC.
1463
- class GoogleAnalyticsAdminV1alphaListAndroidAppDataStreamsResponse
1464
- include Google::Apis::Core::Hashable
1465
-
1466
- # Results that matched the filter criteria and were accessible to the caller.
1467
- # Corresponds to the JSON property `androidAppDataStreams`
1468
- # @return [Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaAndroidAppDataStream>]
1469
- attr_accessor :android_app_data_streams
1470
-
1471
- # A token, which can be sent as `page_token` to retrieve the next page. If this
1472
- # field is omitted, there are no subsequent pages.
1473
- # Corresponds to the JSON property `nextPageToken`
1474
- # @return [String]
1475
- attr_accessor :next_page_token
1476
-
1477
- def initialize(**args)
1478
- update!(**args)
1479
- end
1480
-
1481
- # Update properties of this object
1482
- def update!(**args)
1483
- @android_app_data_streams = args[:android_app_data_streams] if args.key?(:android_app_data_streams)
1484
- @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1485
- end
1486
- end
1487
-
1488
1502
  # Response message for ListConversionEvents RPC.
1489
1503
  class GoogleAnalyticsAdminV1alphaListConversionEventsResponse
1490
1504
  include Google::Apis::Core::Hashable
@@ -1563,6 +1577,32 @@ module Google
1563
1577
  end
1564
1578
  end
1565
1579
 
1580
+ # Response message for ListDataStreams RPC.
1581
+ class GoogleAnalyticsAdminV1alphaListDataStreamsResponse
1582
+ include Google::Apis::Core::Hashable
1583
+
1584
+ # List of DataStreams.
1585
+ # Corresponds to the JSON property `dataStreams`
1586
+ # @return [Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDataStream>]
1587
+ attr_accessor :data_streams
1588
+
1589
+ # A token, which can be sent as `page_token` to retrieve the next page. If this
1590
+ # field is omitted, there are no subsequent pages.
1591
+ # Corresponds to the JSON property `nextPageToken`
1592
+ # @return [String]
1593
+ attr_accessor :next_page_token
1594
+
1595
+ def initialize(**args)
1596
+ update!(**args)
1597
+ end
1598
+
1599
+ # Update properties of this object
1600
+ def update!(**args)
1601
+ @data_streams = args[:data_streams] if args.key?(:data_streams)
1602
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1603
+ end
1604
+ end
1605
+
1566
1606
  # Response message for ListDisplayVideo360AdvertiserLinkProposals RPC.
1567
1607
  class GoogleAnalyticsAdminV1alphaListDisplayVideo360AdvertiserLinkProposalsResponse
1568
1608
  include Google::Apis::Core::Hashable
@@ -1668,32 +1708,6 @@ module Google
1668
1708
  end
1669
1709
  end
1670
1710
 
1671
- # Request message for ListIosAppDataStreams RPC.
1672
- class GoogleAnalyticsAdminV1alphaListIosAppDataStreamsResponse
1673
- include Google::Apis::Core::Hashable
1674
-
1675
- # Results that matched the filter criteria and were accessible to the caller.
1676
- # Corresponds to the JSON property `iosAppDataStreams`
1677
- # @return [Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaIosAppDataStream>]
1678
- attr_accessor :ios_app_data_streams
1679
-
1680
- # A token, which can be sent as `page_token` to retrieve the next page. If this
1681
- # field is omitted, there are no subsequent pages.
1682
- # Corresponds to the JSON property `nextPageToken`
1683
- # @return [String]
1684
- attr_accessor :next_page_token
1685
-
1686
- def initialize(**args)
1687
- update!(**args)
1688
- end
1689
-
1690
- # Update properties of this object
1691
- def update!(**args)
1692
- @ios_app_data_streams = args[:ios_app_data_streams] if args.key?(:ios_app_data_streams)
1693
- @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1694
- end
1695
- end
1696
-
1697
1711
  # Response message for ListMeasurementProtocolSecret RPC
1698
1712
  class GoogleAnalyticsAdminV1alphaListMeasurementProtocolSecretsResponse
1699
1713
  include Google::Apis::Core::Hashable
@@ -1772,32 +1786,6 @@ module Google
1772
1786
  end
1773
1787
  end
1774
1788
 
1775
- # Request message for ListWebDataStreams RPC.
1776
- class GoogleAnalyticsAdminV1alphaListWebDataStreamsResponse
1777
- include Google::Apis::Core::Hashable
1778
-
1779
- # A token, which can be sent as `page_token` to retrieve the next page. If this
1780
- # field is omitted, there are no subsequent pages.
1781
- # Corresponds to the JSON property `nextPageToken`
1782
- # @return [String]
1783
- attr_accessor :next_page_token
1784
-
1785
- # Results that matched the filter criteria and were accessible to the caller.
1786
- # Corresponds to the JSON property `webDataStreams`
1787
- # @return [Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaWebDataStream>]
1788
- attr_accessor :web_data_streams
1789
-
1790
- def initialize(**args)
1791
- update!(**args)
1792
- end
1793
-
1794
- # Update properties of this object
1795
- def update!(**args)
1796
- @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1797
- @web_data_streams = args[:web_data_streams] if args.key?(:web_data_streams)
1798
- end
1799
- end
1800
-
1801
1789
  # A secret value used for sending hits to Measurement Protocol.
1802
1790
  class GoogleAnalyticsAdminV1alphaMeasurementProtocolSecret
1803
1791
  include Google::Apis::Core::Hashable
@@ -1935,7 +1923,7 @@ module Google
1935
1923
  class GoogleAnalyticsAdminV1alphaPropertySummary
1936
1924
  include Google::Apis::Core::Hashable
1937
1925
 
1938
- # Display name for the property referred to in this account summary.
1926
+ # Display name for the property referred to in this property summary.
1939
1927
  # Corresponds to the JSON property `displayName`
1940
1928
  # @return [String]
1941
1929
  attr_accessor :display_name
@@ -2155,67 +2143,6 @@ module Google
2155
2143
  end
2156
2144
  end
2157
2145
 
2158
- # A resource message representing a Google Analytics web stream.
2159
- class GoogleAnalyticsAdminV1alphaWebDataStream
2160
- include Google::Apis::Core::Hashable
2161
-
2162
- # Output only. Time when this stream was originally created.
2163
- # Corresponds to the JSON property `createTime`
2164
- # @return [String]
2165
- attr_accessor :create_time
2166
-
2167
- # Immutable. Domain name of the web app being measured, or empty. Example: "http:
2168
- # //www.google.com", "https://www.google.com"
2169
- # Corresponds to the JSON property `defaultUri`
2170
- # @return [String]
2171
- attr_accessor :default_uri
2172
-
2173
- # Required. Human-readable display name for the Data Stream. The max allowed
2174
- # display name length is 255 UTF-16 code units.
2175
- # Corresponds to the JSON property `displayName`
2176
- # @return [String]
2177
- attr_accessor :display_name
2178
-
2179
- # Output only. ID of the corresponding web app in Firebase, if any. This ID can
2180
- # change if the web app is deleted and recreated.
2181
- # Corresponds to the JSON property `firebaseAppId`
2182
- # @return [String]
2183
- attr_accessor :firebase_app_id
2184
-
2185
- # Output only. Analytics "Measurement ID", without the "G-" prefix. Example: "G-
2186
- # 1A2BCD345E" would just be "1A2BCD345E"
2187
- # Corresponds to the JSON property `measurementId`
2188
- # @return [String]
2189
- attr_accessor :measurement_id
2190
-
2191
- # Output only. Resource name of this Data Stream. Format: properties/`
2192
- # property_id`/webDataStreams/`stream_id` Example: "properties/1000/
2193
- # webDataStreams/2000"
2194
- # Corresponds to the JSON property `name`
2195
- # @return [String]
2196
- attr_accessor :name
2197
-
2198
- # Output only. Time when stream payload fields were last updated.
2199
- # Corresponds to the JSON property `updateTime`
2200
- # @return [String]
2201
- attr_accessor :update_time
2202
-
2203
- def initialize(**args)
2204
- update!(**args)
2205
- end
2206
-
2207
- # Update properties of this object
2208
- def update!(**args)
2209
- @create_time = args[:create_time] if args.key?(:create_time)
2210
- @default_uri = args[:default_uri] if args.key?(:default_uri)
2211
- @display_name = args[:display_name] if args.key?(:display_name)
2212
- @firebase_app_id = args[:firebase_app_id] if args.key?(:firebase_app_id)
2213
- @measurement_id = args[:measurement_id] if args.key?(:measurement_id)
2214
- @name = args[:name] if args.key?(:name)
2215
- @update_time = args[:update_time] if args.key?(:update_time)
2216
- end
2217
- end
2218
-
2219
2146
  # A generic empty message that you can re-use to avoid defining duplicated empty
2220
2147
  # messages in your APIs. A typical example is to use it as the request or the
2221
2148
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
@@ -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.0"
19
+ GEM_VERSION = "0.23.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.0"
22
+ GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20211102"
25
+ REVISION = "20220116"
26
26
  end
27
27
  end
28
28
  end