google-apis-datamanager_v1 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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 445869a6f4e9017ca694d7c8a52199f5035c4c246aa50412ac92947346ebaa50
|
|
4
|
+
data.tar.gz: c59163aea633639802c0ea304a8c5e2563b55263c9cd45b596be74b17d553fd6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 160193b4311aa68d6523ad7115cca838228389ad13509c6931fe9675b6db89f1b168f2b4fa7fa2a4890d6b8db82cadbd4f4cc764e0cb28437616aee7b968a7e8
|
|
7
|
+
data.tar.gz: aa292ec69f296807120a195bfb40b5b09f2a38a077fb13c42301da458fce68eddf4ef72c2471261e523cb886f07802dcedd810dd0f3a29ecbab2460da918ec54
|
data/CHANGELOG.md
CHANGED
|
@@ -163,7 +163,7 @@ module Google
|
|
|
163
163
|
# @return [String]
|
|
164
164
|
attr_accessor :platform_type_string
|
|
165
165
|
|
|
166
|
-
#
|
|
166
|
+
# Optional. The ISO 3166-2 country plus subdivision.
|
|
167
167
|
# Corresponds to the JSON property `regionCode`
|
|
168
168
|
# @return [String]
|
|
169
169
|
attr_accessor :region_code
|
|
@@ -321,6 +321,29 @@ module Google
|
|
|
321
321
|
class AddressInfo
|
|
322
322
|
include Google::Apis::Core::Hashable
|
|
323
323
|
|
|
324
|
+
# Optional. The street and number of the user's address. Used only for Google
|
|
325
|
+
# Analytics. This field is hashed and possibly encrypted. Normalize the value
|
|
326
|
+
# before hashing: - Remove symbol characters - Convert to lowercase - Remove
|
|
327
|
+
# leading and trailing whitespace
|
|
328
|
+
# Corresponds to the JSON property `addressLine`
|
|
329
|
+
# @return [String]
|
|
330
|
+
attr_accessor :address_line
|
|
331
|
+
|
|
332
|
+
# Optional. The administrative area (state/province) of the user's address. Used
|
|
333
|
+
# only for Google Analytics. The value should be normalized as such: - Remove
|
|
334
|
+
# symbol characters - Convert to lowercase - Remove leading and trailing
|
|
335
|
+
# whitespace
|
|
336
|
+
# Corresponds to the JSON property `administrativeArea`
|
|
337
|
+
# @return [String]
|
|
338
|
+
attr_accessor :administrative_area
|
|
339
|
+
|
|
340
|
+
# Optional. The city of the user's address. Used only for Google Analytics. The
|
|
341
|
+
# value should be normalized as such: - Remove symbol characters - Convert to
|
|
342
|
+
# lowercase - Remove leading and trailing whitespace
|
|
343
|
+
# Corresponds to the JSON property `city`
|
|
344
|
+
# @return [String]
|
|
345
|
+
attr_accessor :city
|
|
346
|
+
|
|
324
347
|
# Required. Family (last) name of the user, all lowercase, with no punctuation,
|
|
325
348
|
# no leading or trailing whitespace, and hashed as SHA-256.
|
|
326
349
|
# Corresponds to the JSON property `familyName`
|
|
@@ -349,6 +372,9 @@ module Google
|
|
|
349
372
|
|
|
350
373
|
# Update properties of this object
|
|
351
374
|
def update!(**args)
|
|
375
|
+
@address_line = args[:address_line] if args.key?(:address_line)
|
|
376
|
+
@administrative_area = args[:administrative_area] if args.key?(:administrative_area)
|
|
377
|
+
@city = args[:city] if args.key?(:city)
|
|
352
378
|
@family_name = args[:family_name] if args.key?(:family_name)
|
|
353
379
|
@given_name = args[:given_name] if args.key?(:given_name)
|
|
354
380
|
@postal_code = args[:postal_code] if args.key?(:postal_code)
|
|
@@ -377,6 +403,12 @@ module Google
|
|
|
377
403
|
# @return [Array<String>]
|
|
378
404
|
attr_accessor :destination_references
|
|
379
405
|
|
|
406
|
+
# Google user id data holding encrypted google user IDs. At least one google
|
|
407
|
+
# user ID is required.
|
|
408
|
+
# Corresponds to the JSON property `googleUserIdData`
|
|
409
|
+
# @return [Google::Apis::DatamanagerV1::GoogleUserIdData]
|
|
410
|
+
attr_accessor :google_user_id_data
|
|
411
|
+
|
|
380
412
|
# Mobile IDs for the audience. At least one mobile ID is required.
|
|
381
413
|
# Corresponds to the JSON property `mobileData`
|
|
382
414
|
# @return [Google::Apis::DatamanagerV1::MobileData]
|
|
@@ -389,6 +421,12 @@ module Google
|
|
|
389
421
|
# @return [Google::Apis::DatamanagerV1::PairData]
|
|
390
422
|
attr_accessor :pair_data
|
|
391
423
|
|
|
424
|
+
# Partner-provided data holding the partner-provided identifiers. At least one
|
|
425
|
+
# partner-provided identifier is required.
|
|
426
|
+
# Corresponds to the JSON property `partnerProvidedIdData`
|
|
427
|
+
# @return [Google::Apis::DatamanagerV1::PartnerProvidedIdData]
|
|
428
|
+
attr_accessor :partner_provided_id_data
|
|
429
|
+
|
|
392
430
|
# Publisher provided identifiers data holding the ppids. At least one ppid is
|
|
393
431
|
# required. This feature is only available to data partners.
|
|
394
432
|
# Corresponds to the JSON property `ppidData`
|
|
@@ -414,8 +452,10 @@ module Google
|
|
|
414
452
|
@composite_data = args[:composite_data] if args.key?(:composite_data)
|
|
415
453
|
@consent = args[:consent] if args.key?(:consent)
|
|
416
454
|
@destination_references = args[:destination_references] if args.key?(:destination_references)
|
|
455
|
+
@google_user_id_data = args[:google_user_id_data] if args.key?(:google_user_id_data)
|
|
417
456
|
@mobile_data = args[:mobile_data] if args.key?(:mobile_data)
|
|
418
457
|
@pair_data = args[:pair_data] if args.key?(:pair_data)
|
|
458
|
+
@partner_provided_id_data = args[:partner_provided_id_data] if args.key?(:partner_provided_id_data)
|
|
419
459
|
@ppid_data = args[:ppid_data] if args.key?(:ppid_data)
|
|
420
460
|
@user_data = args[:user_data] if args.key?(:user_data)
|
|
421
461
|
@user_id_data = args[:user_id_data] if args.key?(:user_id_data)
|
|
@@ -772,15 +812,15 @@ module Google
|
|
|
772
812
|
# @return [String]
|
|
773
813
|
attr_accessor :category
|
|
774
814
|
|
|
775
|
-
# Optional. The IP address of the device for the given context.
|
|
776
|
-
# Ads does not support IP address matching
|
|
777
|
-
# Economic Area (EEA), United Kingdom (UK), or
|
|
778
|
-
# conditionally exclude sharing IP addresses from
|
|
779
|
-
# ensure that you provide users with clear and
|
|
780
|
-
# the data you collect on your sites, apps, and
|
|
781
|
-
# where required by law or any applicable
|
|
782
|
-
# offline conversion imports](https://support.
|
|
783
|
-
# 2998031) page for more details.
|
|
815
|
+
# Optional. The IP address of the device for the given context. Required when
|
|
816
|
+
# used in an AdEvent. **Note:** Google Ads does not support IP address matching
|
|
817
|
+
# for end users in the European Economic Area (EEA), United Kingdom (UK), or
|
|
818
|
+
# Switzerland (CH). Add logic to conditionally exclude sharing IP addresses from
|
|
819
|
+
# users from these regions and ensure that you provide users with clear and
|
|
820
|
+
# comprehensive information about the data you collect on your sites, apps, and
|
|
821
|
+
# other properties and get consent where required by law or any applicable
|
|
822
|
+
# Google policies. See the [About offline conversion imports](https://support.
|
|
823
|
+
# google.com/google-ads/answer/2998031) page for more details.
|
|
784
824
|
# Corresponds to the JSON property `ipAddress`
|
|
785
825
|
# @return [String]
|
|
786
826
|
attr_accessor :ip_address
|
|
@@ -1240,6 +1280,38 @@ module Google
|
|
|
1240
1280
|
end
|
|
1241
1281
|
end
|
|
1242
1282
|
|
|
1283
|
+
# Detailed row-level warning with field paths.
|
|
1284
|
+
class FieldWarning
|
|
1285
|
+
include Google::Apis::Core::Hashable
|
|
1286
|
+
|
|
1287
|
+
# The detailed warning message describing the issue.
|
|
1288
|
+
# Corresponds to the JSON property `description`
|
|
1289
|
+
# @return [String]
|
|
1290
|
+
attr_accessor :description
|
|
1291
|
+
|
|
1292
|
+
# The field path that triggered the warning. Uses the same format as google.rpc.
|
|
1293
|
+
# BadRequest.FieldViolation.field.
|
|
1294
|
+
# Corresponds to the JSON property `field`
|
|
1295
|
+
# @return [String]
|
|
1296
|
+
attr_accessor :field
|
|
1297
|
+
|
|
1298
|
+
# The warning reason.
|
|
1299
|
+
# Corresponds to the JSON property `reason`
|
|
1300
|
+
# @return [String]
|
|
1301
|
+
attr_accessor :reason
|
|
1302
|
+
|
|
1303
|
+
def initialize(**args)
|
|
1304
|
+
update!(**args)
|
|
1305
|
+
end
|
|
1306
|
+
|
|
1307
|
+
# Update properties of this object
|
|
1308
|
+
def update!(**args)
|
|
1309
|
+
@description = args[:description] if args.key?(:description)
|
|
1310
|
+
@field = args[:field] if args.key?(:field)
|
|
1311
|
+
@reason = args[:reason] if args.key?(:reason)
|
|
1312
|
+
end
|
|
1313
|
+
end
|
|
1314
|
+
|
|
1243
1315
|
# Information about the Google Cloud Platform wrapped key.
|
|
1244
1316
|
class GcpWrappedKeyInfo
|
|
1245
1317
|
include Google::Apis::Core::Hashable
|
|
@@ -1282,6 +1354,26 @@ module Google
|
|
|
1282
1354
|
end
|
|
1283
1355
|
end
|
|
1284
1356
|
|
|
1357
|
+
# Google user id data holding encrypted google user IDs. At least one google
|
|
1358
|
+
# user ID is required.
|
|
1359
|
+
class GoogleUserIdData
|
|
1360
|
+
include Google::Apis::Core::Hashable
|
|
1361
|
+
|
|
1362
|
+
# Required. The list of encrypted google user IDs.
|
|
1363
|
+
# Corresponds to the JSON property `googleUserIds`
|
|
1364
|
+
# @return [Array<String>]
|
|
1365
|
+
attr_accessor :google_user_ids
|
|
1366
|
+
|
|
1367
|
+
def initialize(**args)
|
|
1368
|
+
update!(**args)
|
|
1369
|
+
end
|
|
1370
|
+
|
|
1371
|
+
# Update properties of this object
|
|
1372
|
+
def update!(**args)
|
|
1373
|
+
@google_user_ids = args[:google_user_ids] if args.key?(:google_user_ids)
|
|
1374
|
+
end
|
|
1375
|
+
end
|
|
1376
|
+
|
|
1285
1377
|
# Request to upload ad events.
|
|
1286
1378
|
class IngestAdEventsRequest
|
|
1287
1379
|
include Google::Apis::Core::Hashable
|
|
@@ -1397,6 +1489,11 @@ module Google
|
|
|
1397
1489
|
class IngestAudienceMembersResponse
|
|
1398
1490
|
include Google::Apis::Core::Hashable
|
|
1399
1491
|
|
|
1492
|
+
# Detailed row-level warnings with field paths.
|
|
1493
|
+
# Corresponds to the JSON property `fieldWarnings`
|
|
1494
|
+
# @return [Array<Google::Apis::DatamanagerV1::FieldWarning>]
|
|
1495
|
+
attr_accessor :field_warnings
|
|
1496
|
+
|
|
1400
1497
|
# The auto-generated ID of the request.
|
|
1401
1498
|
# Corresponds to the JSON property `requestId`
|
|
1402
1499
|
# @return [String]
|
|
@@ -1408,6 +1505,7 @@ module Google
|
|
|
1408
1505
|
|
|
1409
1506
|
# Update properties of this object
|
|
1410
1507
|
def update!(**args)
|
|
1508
|
+
@field_warnings = args[:field_warnings] if args.key?(:field_warnings)
|
|
1411
1509
|
@request_id = args[:request_id] if args.key?(:request_id)
|
|
1412
1510
|
end
|
|
1413
1511
|
end
|
|
@@ -1422,6 +1520,12 @@ module Google
|
|
|
1422
1520
|
# @return [Google::Apis::DatamanagerV1::IngestCompositeDataStatus]
|
|
1423
1521
|
attr_accessor :composite_data_ingestion_status
|
|
1424
1522
|
|
|
1523
|
+
# The status of the google user id data ingestion to the destination containing
|
|
1524
|
+
# stats related to the ingestion.
|
|
1525
|
+
# Corresponds to the JSON property `googleUserIdDataIngestionStatus`
|
|
1526
|
+
# @return [Google::Apis::DatamanagerV1::IngestGoogleUserIdDataStatus]
|
|
1527
|
+
attr_accessor :google_user_id_data_ingestion_status
|
|
1528
|
+
|
|
1425
1529
|
# The status of the mobile data ingestion to the destination containing stats
|
|
1426
1530
|
# related to the ingestion.
|
|
1427
1531
|
# Corresponds to the JSON property `mobileDataIngestionStatus`
|
|
@@ -1434,6 +1538,12 @@ module Google
|
|
|
1434
1538
|
# @return [Google::Apis::DatamanagerV1::IngestPairDataStatus]
|
|
1435
1539
|
attr_accessor :pair_data_ingestion_status
|
|
1436
1540
|
|
|
1541
|
+
# The status of the partner provided id data ingestion to the destination
|
|
1542
|
+
# containing stats related to the ingestion.
|
|
1543
|
+
# Corresponds to the JSON property `partnerProvidedIdDataIngestionStatus`
|
|
1544
|
+
# @return [Google::Apis::DatamanagerV1::IngestPartnerProvidedIdDataStatus]
|
|
1545
|
+
attr_accessor :partner_provided_id_data_ingestion_status
|
|
1546
|
+
|
|
1437
1547
|
# The status of the ppid data ingestion to the destination containing stats
|
|
1438
1548
|
# related to the ingestion.
|
|
1439
1549
|
# Corresponds to the JSON property `ppidDataIngestionStatus`
|
|
@@ -1459,8 +1569,10 @@ module Google
|
|
|
1459
1569
|
# Update properties of this object
|
|
1460
1570
|
def update!(**args)
|
|
1461
1571
|
@composite_data_ingestion_status = args[:composite_data_ingestion_status] if args.key?(:composite_data_ingestion_status)
|
|
1572
|
+
@google_user_id_data_ingestion_status = args[:google_user_id_data_ingestion_status] if args.key?(:google_user_id_data_ingestion_status)
|
|
1462
1573
|
@mobile_data_ingestion_status = args[:mobile_data_ingestion_status] if args.key?(:mobile_data_ingestion_status)
|
|
1463
1574
|
@pair_data_ingestion_status = args[:pair_data_ingestion_status] if args.key?(:pair_data_ingestion_status)
|
|
1575
|
+
@partner_provided_id_data_ingestion_status = args[:partner_provided_id_data_ingestion_status] if args.key?(:partner_provided_id_data_ingestion_status)
|
|
1464
1576
|
@ppid_data_ingestion_status = args[:ppid_data_ingestion_status] if args.key?(:ppid_data_ingestion_status)
|
|
1465
1577
|
@user_data_ingestion_status = args[:user_data_ingestion_status] if args.key?(:user_data_ingestion_status)
|
|
1466
1578
|
@user_id_data_ingestion_status = args[:user_id_data_ingestion_status] if args.key?(:user_id_data_ingestion_status)
|
|
@@ -1567,6 +1679,11 @@ module Google
|
|
|
1567
1679
|
class IngestEventsResponse
|
|
1568
1680
|
include Google::Apis::Core::Hashable
|
|
1569
1681
|
|
|
1682
|
+
# Detailed row-level warnings with field paths.
|
|
1683
|
+
# Corresponds to the JSON property `fieldWarnings`
|
|
1684
|
+
# @return [Array<Google::Apis::DatamanagerV1::FieldWarning>]
|
|
1685
|
+
attr_accessor :field_warnings
|
|
1686
|
+
|
|
1570
1687
|
# The auto-generated ID of the request.
|
|
1571
1688
|
# Corresponds to the JSON property `requestId`
|
|
1572
1689
|
# @return [String]
|
|
@@ -1578,6 +1695,7 @@ module Google
|
|
|
1578
1695
|
|
|
1579
1696
|
# Update properties of this object
|
|
1580
1697
|
def update!(**args)
|
|
1698
|
+
@field_warnings = args[:field_warnings] if args.key?(:field_warnings)
|
|
1581
1699
|
@request_id = args[:request_id] if args.key?(:request_id)
|
|
1582
1700
|
end
|
|
1583
1701
|
end
|
|
@@ -1602,6 +1720,36 @@ module Google
|
|
|
1602
1720
|
end
|
|
1603
1721
|
end
|
|
1604
1722
|
|
|
1723
|
+
# The status of the google user id data ingestion to the destination containing
|
|
1724
|
+
# stats related to the ingestion.
|
|
1725
|
+
class IngestGoogleUserIdDataStatus
|
|
1726
|
+
include Google::Apis::Core::Hashable
|
|
1727
|
+
|
|
1728
|
+
# The total count of google user ids sent in the upload request for the
|
|
1729
|
+
# destination. Includes all google user ids in the request, regardless of
|
|
1730
|
+
# whether they were successfully ingested or not.
|
|
1731
|
+
# Corresponds to the JSON property `googleUserIdCount`
|
|
1732
|
+
# @return [Fixnum]
|
|
1733
|
+
attr_accessor :google_user_id_count
|
|
1734
|
+
|
|
1735
|
+
# The total count of audience members sent in the upload request for the
|
|
1736
|
+
# destination. Includes all audience members in the request, regardless of
|
|
1737
|
+
# whether they were successfully ingested or not.
|
|
1738
|
+
# Corresponds to the JSON property `recordCount`
|
|
1739
|
+
# @return [Fixnum]
|
|
1740
|
+
attr_accessor :record_count
|
|
1741
|
+
|
|
1742
|
+
def initialize(**args)
|
|
1743
|
+
update!(**args)
|
|
1744
|
+
end
|
|
1745
|
+
|
|
1746
|
+
# Update properties of this object
|
|
1747
|
+
def update!(**args)
|
|
1748
|
+
@google_user_id_count = args[:google_user_id_count] if args.key?(:google_user_id_count)
|
|
1749
|
+
@record_count = args[:record_count] if args.key?(:record_count)
|
|
1750
|
+
end
|
|
1751
|
+
end
|
|
1752
|
+
|
|
1605
1753
|
# The status of the mobile data ingestion to the destination containing stats
|
|
1606
1754
|
# related to the ingestion.
|
|
1607
1755
|
class IngestMobileDataStatus
|
|
@@ -1662,6 +1810,36 @@ module Google
|
|
|
1662
1810
|
end
|
|
1663
1811
|
end
|
|
1664
1812
|
|
|
1813
|
+
# The status of the partner provided id data ingestion to the destination
|
|
1814
|
+
# containing stats related to the ingestion.
|
|
1815
|
+
class IngestPartnerProvidedIdDataStatus
|
|
1816
|
+
include Google::Apis::Core::Hashable
|
|
1817
|
+
|
|
1818
|
+
# The total count of partner provided ids sent in the upload request for the
|
|
1819
|
+
# destination. Includes all partner provided ids in the request, regardless of
|
|
1820
|
+
# whether they were successfully ingested or not.
|
|
1821
|
+
# Corresponds to the JSON property `partnerProvidedIdCount`
|
|
1822
|
+
# @return [Fixnum]
|
|
1823
|
+
attr_accessor :partner_provided_id_count
|
|
1824
|
+
|
|
1825
|
+
# The total count of audience members sent in the upload request for the
|
|
1826
|
+
# destination. Includes all audience members in the request, regardless of
|
|
1827
|
+
# whether they were successfully ingested or not.
|
|
1828
|
+
# Corresponds to the JSON property `recordCount`
|
|
1829
|
+
# @return [Fixnum]
|
|
1830
|
+
attr_accessor :record_count
|
|
1831
|
+
|
|
1832
|
+
def initialize(**args)
|
|
1833
|
+
update!(**args)
|
|
1834
|
+
end
|
|
1835
|
+
|
|
1836
|
+
# Update properties of this object
|
|
1837
|
+
def update!(**args)
|
|
1838
|
+
@partner_provided_id_count = args[:partner_provided_id_count] if args.key?(:partner_provided_id_count)
|
|
1839
|
+
@record_count = args[:record_count] if args.key?(:record_count)
|
|
1840
|
+
end
|
|
1841
|
+
end
|
|
1842
|
+
|
|
1665
1843
|
# The status of the ppid data ingestion to the destination containing stats
|
|
1666
1844
|
# related to the ingestion.
|
|
1667
1845
|
class IngestPpidDataStatus
|
|
@@ -2187,8 +2365,10 @@ module Google
|
|
|
2187
2365
|
class MobileData
|
|
2188
2366
|
include Google::Apis::Core::Hashable
|
|
2189
2367
|
|
|
2190
|
-
# Required. The list of mobile device IDs (advertising ID
|
|
2191
|
-
#
|
|
2368
|
+
# Required. The list of mobile device IDs (Android advertising ID, iOS IDFA for
|
|
2369
|
+
# Customer Match user lists and Android advertising ID, iOS IDFA, Xbox or
|
|
2370
|
+
# Microsoft ID, Amazon Fire TV ID, Roku ID, Generic Device ID for basic user
|
|
2371
|
+
# lists). At most 10 `mobileIds` can be provided in a single AudienceMember.
|
|
2192
2372
|
# Corresponds to the JSON property `mobileIds`
|
|
2193
2373
|
# @return [Array<String>]
|
|
2194
2374
|
attr_accessor :mobile_ids
|
|
@@ -2448,6 +2628,26 @@ module Google
|
|
|
2448
2628
|
end
|
|
2449
2629
|
end
|
|
2450
2630
|
|
|
2631
|
+
# Partner-provided data holding the partner-provided identifiers. At least one
|
|
2632
|
+
# partner-provided identifier is required.
|
|
2633
|
+
class PartnerProvidedIdData
|
|
2634
|
+
include Google::Apis::Core::Hashable
|
|
2635
|
+
|
|
2636
|
+
# Required. The list of partner-provided identifiers.
|
|
2637
|
+
# Corresponds to the JSON property `partnerProvidedIds`
|
|
2638
|
+
# @return [Array<String>]
|
|
2639
|
+
attr_accessor :partner_provided_ids
|
|
2640
|
+
|
|
2641
|
+
def initialize(**args)
|
|
2642
|
+
update!(**args)
|
|
2643
|
+
end
|
|
2644
|
+
|
|
2645
|
+
# Update properties of this object
|
|
2646
|
+
def update!(**args)
|
|
2647
|
+
@partner_provided_ids = args[:partner_provided_ids] if args.key?(:partner_provided_ids)
|
|
2648
|
+
end
|
|
2649
|
+
end
|
|
2650
|
+
|
|
2451
2651
|
# Publisher provided identifiers data holding the ppids. At least one ppid is
|
|
2452
2652
|
# required. This feature is only available to data partners.
|
|
2453
2653
|
class PpidData
|
|
@@ -2526,6 +2726,74 @@ module Google
|
|
|
2526
2726
|
end
|
|
2527
2727
|
end
|
|
2528
2728
|
|
|
2729
|
+
# Request to remove all users from an audience in the provided destinations.
|
|
2730
|
+
# Returns a RemoveAllAudienceMembersResponse.
|
|
2731
|
+
class RemoveAllAudienceMembersRequest
|
|
2732
|
+
include Google::Apis::Core::Hashable
|
|
2733
|
+
|
|
2734
|
+
# Required. The list of destinations to remove the users from.
|
|
2735
|
+
# Corresponds to the JSON property `destinations`
|
|
2736
|
+
# @return [Array<Google::Apis::DatamanagerV1::Destination>]
|
|
2737
|
+
attr_accessor :destinations
|
|
2738
|
+
|
|
2739
|
+
# Optional. The remove as of time. If set, only audience members last added
|
|
2740
|
+
# before this time will be removed. If not set, it defaults to current time. The
|
|
2741
|
+
# remove as of time must not be in the future.
|
|
2742
|
+
# Corresponds to the JSON property `removeAsOfTime`
|
|
2743
|
+
# @return [String]
|
|
2744
|
+
attr_accessor :remove_as_of_time
|
|
2745
|
+
|
|
2746
|
+
# Optional. For testing purposes. If `true`, the request is validated but not
|
|
2747
|
+
# executed. Only errors are returned, not results.
|
|
2748
|
+
# Corresponds to the JSON property `validateOnly`
|
|
2749
|
+
# @return [Boolean]
|
|
2750
|
+
attr_accessor :validate_only
|
|
2751
|
+
alias_method :validate_only?, :validate_only
|
|
2752
|
+
|
|
2753
|
+
def initialize(**args)
|
|
2754
|
+
update!(**args)
|
|
2755
|
+
end
|
|
2756
|
+
|
|
2757
|
+
# Update properties of this object
|
|
2758
|
+
def update!(**args)
|
|
2759
|
+
@destinations = args[:destinations] if args.key?(:destinations)
|
|
2760
|
+
@remove_as_of_time = args[:remove_as_of_time] if args.key?(:remove_as_of_time)
|
|
2761
|
+
@validate_only = args[:validate_only] if args.key?(:validate_only)
|
|
2762
|
+
end
|
|
2763
|
+
end
|
|
2764
|
+
|
|
2765
|
+
# Response from the RemoveAllAudienceMembersRequest.
|
|
2766
|
+
class RemoveAllAudienceMembersResponse
|
|
2767
|
+
include Google::Apis::Core::Hashable
|
|
2768
|
+
|
|
2769
|
+
# The auto-generated ID of the request.
|
|
2770
|
+
# Corresponds to the JSON property `requestId`
|
|
2771
|
+
# @return [String]
|
|
2772
|
+
attr_accessor :request_id
|
|
2773
|
+
|
|
2774
|
+
def initialize(**args)
|
|
2775
|
+
update!(**args)
|
|
2776
|
+
end
|
|
2777
|
+
|
|
2778
|
+
# Update properties of this object
|
|
2779
|
+
def update!(**args)
|
|
2780
|
+
@request_id = args[:request_id] if args.key?(:request_id)
|
|
2781
|
+
end
|
|
2782
|
+
end
|
|
2783
|
+
|
|
2784
|
+
# The status of the remove all audience members request.
|
|
2785
|
+
class RemoveAllAudienceMembersStatus
|
|
2786
|
+
include Google::Apis::Core::Hashable
|
|
2787
|
+
|
|
2788
|
+
def initialize(**args)
|
|
2789
|
+
update!(**args)
|
|
2790
|
+
end
|
|
2791
|
+
|
|
2792
|
+
# Update properties of this object
|
|
2793
|
+
def update!(**args)
|
|
2794
|
+
end
|
|
2795
|
+
end
|
|
2796
|
+
|
|
2529
2797
|
# Request to remove users from an audience in the provided destinations. Returns
|
|
2530
2798
|
# a RemoveAudienceMembersResponse.
|
|
2531
2799
|
class RemoveAudienceMembersRequest
|
|
@@ -2602,6 +2870,11 @@ module Google
|
|
|
2602
2870
|
# @return [Google::Apis::DatamanagerV1::RemoveCompositeDataStatus]
|
|
2603
2871
|
attr_accessor :composite_data_removal_status
|
|
2604
2872
|
|
|
2873
|
+
# The status of the google user id data removal from the destination.
|
|
2874
|
+
# Corresponds to the JSON property `googleUserIdDataRemovalStatus`
|
|
2875
|
+
# @return [Google::Apis::DatamanagerV1::RemoveGoogleUserIdDataStatus]
|
|
2876
|
+
attr_accessor :google_user_id_data_removal_status
|
|
2877
|
+
|
|
2605
2878
|
# The status of the mobile data removal from the destination.
|
|
2606
2879
|
# Corresponds to the JSON property `mobileDataRemovalStatus`
|
|
2607
2880
|
# @return [Google::Apis::DatamanagerV1::RemoveMobileDataStatus]
|
|
@@ -2612,6 +2885,11 @@ module Google
|
|
|
2612
2885
|
# @return [Google::Apis::DatamanagerV1::RemovePairDataStatus]
|
|
2613
2886
|
attr_accessor :pair_data_removal_status
|
|
2614
2887
|
|
|
2888
|
+
# The status of the partner provided id data removal from the destination.
|
|
2889
|
+
# Corresponds to the JSON property `partnerProvidedIdDataRemovalStatus`
|
|
2890
|
+
# @return [Google::Apis::DatamanagerV1::RemovePartnerProvidedIdDataStatus]
|
|
2891
|
+
attr_accessor :partner_provided_id_data_removal_status
|
|
2892
|
+
|
|
2615
2893
|
# The status of the ppid data removal from the destination.
|
|
2616
2894
|
# Corresponds to the JSON property `ppidDataRemovalStatus`
|
|
2617
2895
|
# @return [Google::Apis::DatamanagerV1::RemovePpidDataStatus]
|
|
@@ -2634,8 +2912,10 @@ module Google
|
|
|
2634
2912
|
# Update properties of this object
|
|
2635
2913
|
def update!(**args)
|
|
2636
2914
|
@composite_data_removal_status = args[:composite_data_removal_status] if args.key?(:composite_data_removal_status)
|
|
2915
|
+
@google_user_id_data_removal_status = args[:google_user_id_data_removal_status] if args.key?(:google_user_id_data_removal_status)
|
|
2637
2916
|
@mobile_data_removal_status = args[:mobile_data_removal_status] if args.key?(:mobile_data_removal_status)
|
|
2638
2917
|
@pair_data_removal_status = args[:pair_data_removal_status] if args.key?(:pair_data_removal_status)
|
|
2918
|
+
@partner_provided_id_data_removal_status = args[:partner_provided_id_data_removal_status] if args.key?(:partner_provided_id_data_removal_status)
|
|
2639
2919
|
@ppid_data_removal_status = args[:ppid_data_removal_status] if args.key?(:ppid_data_removal_status)
|
|
2640
2920
|
@user_data_removal_status = args[:user_data_removal_status] if args.key?(:user_data_removal_status)
|
|
2641
2921
|
@user_id_data_removal_status = args[:user_id_data_removal_status] if args.key?(:user_id_data_removal_status)
|
|
@@ -2671,6 +2951,35 @@ module Google
|
|
|
2671
2951
|
end
|
|
2672
2952
|
end
|
|
2673
2953
|
|
|
2954
|
+
# The status of the google user id data removal from the destination.
|
|
2955
|
+
class RemoveGoogleUserIdDataStatus
|
|
2956
|
+
include Google::Apis::Core::Hashable
|
|
2957
|
+
|
|
2958
|
+
# The total count of google user ids sent in the removal request. Includes all
|
|
2959
|
+
# google user ids in the request, regardless of whether they were successfully
|
|
2960
|
+
# removed or not.
|
|
2961
|
+
# Corresponds to the JSON property `googleUserIdCount`
|
|
2962
|
+
# @return [Fixnum]
|
|
2963
|
+
attr_accessor :google_user_id_count
|
|
2964
|
+
|
|
2965
|
+
# The total count of audience members sent in the removal request. Includes all
|
|
2966
|
+
# audience members in the request, regardless of whether they were successfully
|
|
2967
|
+
# removed or not.
|
|
2968
|
+
# Corresponds to the JSON property `recordCount`
|
|
2969
|
+
# @return [Fixnum]
|
|
2970
|
+
attr_accessor :record_count
|
|
2971
|
+
|
|
2972
|
+
def initialize(**args)
|
|
2973
|
+
update!(**args)
|
|
2974
|
+
end
|
|
2975
|
+
|
|
2976
|
+
# Update properties of this object
|
|
2977
|
+
def update!(**args)
|
|
2978
|
+
@google_user_id_count = args[:google_user_id_count] if args.key?(:google_user_id_count)
|
|
2979
|
+
@record_count = args[:record_count] if args.key?(:record_count)
|
|
2980
|
+
end
|
|
2981
|
+
end
|
|
2982
|
+
|
|
2674
2983
|
# The status of the mobile data removal from the destination.
|
|
2675
2984
|
class RemoveMobileDataStatus
|
|
2676
2985
|
include Google::Apis::Core::Hashable
|
|
@@ -2728,6 +3037,35 @@ module Google
|
|
|
2728
3037
|
end
|
|
2729
3038
|
end
|
|
2730
3039
|
|
|
3040
|
+
# The status of the partner provided id data removal from the destination.
|
|
3041
|
+
class RemovePartnerProvidedIdDataStatus
|
|
3042
|
+
include Google::Apis::Core::Hashable
|
|
3043
|
+
|
|
3044
|
+
# The total count of partner provided ids sent in the removal request. Includes
|
|
3045
|
+
# all partner provided ids in the request, regardless of whether they were
|
|
3046
|
+
# successfully removed or not.
|
|
3047
|
+
# Corresponds to the JSON property `partnerProvidedIdCount`
|
|
3048
|
+
# @return [Fixnum]
|
|
3049
|
+
attr_accessor :partner_provided_id_count
|
|
3050
|
+
|
|
3051
|
+
# The total count of audience members sent in the removal request. Includes all
|
|
3052
|
+
# audience members in the request, regardless of whether they were successfully
|
|
3053
|
+
# removed or not.
|
|
3054
|
+
# Corresponds to the JSON property `recordCount`
|
|
3055
|
+
# @return [Fixnum]
|
|
3056
|
+
attr_accessor :record_count
|
|
3057
|
+
|
|
3058
|
+
def initialize(**args)
|
|
3059
|
+
update!(**args)
|
|
3060
|
+
end
|
|
3061
|
+
|
|
3062
|
+
# Update properties of this object
|
|
3063
|
+
def update!(**args)
|
|
3064
|
+
@partner_provided_id_count = args[:partner_provided_id_count] if args.key?(:partner_provided_id_count)
|
|
3065
|
+
@record_count = args[:record_count] if args.key?(:record_count)
|
|
3066
|
+
end
|
|
3067
|
+
end
|
|
3068
|
+
|
|
2731
3069
|
# The status of the ppid data removal from the destination.
|
|
2732
3070
|
class RemovePpidDataStatus
|
|
2733
3071
|
include Google::Apis::Core::Hashable
|
|
@@ -2842,6 +3180,11 @@ module Google
|
|
|
2842
3180
|
# @return [Google::Apis::DatamanagerV1::IngestEventsStatus]
|
|
2843
3181
|
attr_accessor :events_ingestion_status
|
|
2844
3182
|
|
|
3183
|
+
# The status of the remove all audience members request.
|
|
3184
|
+
# Corresponds to the JSON property `removeAllAudienceMembersStatus`
|
|
3185
|
+
# @return [Google::Apis::DatamanagerV1::RemoveAllAudienceMembersStatus]
|
|
3186
|
+
attr_accessor :remove_all_audience_members_status
|
|
3187
|
+
|
|
2845
3188
|
# The request status of the destination.
|
|
2846
3189
|
# Corresponds to the JSON property `requestStatus`
|
|
2847
3190
|
# @return [String]
|
|
@@ -2863,6 +3206,7 @@ module Google
|
|
|
2863
3206
|
@destination = args[:destination] if args.key?(:destination)
|
|
2864
3207
|
@error_info = args[:error_info] if args.key?(:error_info)
|
|
2865
3208
|
@events_ingestion_status = args[:events_ingestion_status] if args.key?(:events_ingestion_status)
|
|
3209
|
+
@remove_all_audience_members_status = args[:remove_all_audience_members_status] if args.key?(:remove_all_audience_members_status)
|
|
2866
3210
|
@request_status = args[:request_status] if args.key?(:request_status)
|
|
2867
3211
|
@warning_info = args[:warning_info] if args.key?(:warning_info)
|
|
2868
3212
|
end
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module DatamanagerV1
|
|
18
18
|
# Version of the google-apis-datamanager_v1 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.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260729"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -166,12 +166,24 @@ module Google
|
|
|
166
166
|
include Google::Apis::Core::JsonObjectSupport
|
|
167
167
|
end
|
|
168
168
|
|
|
169
|
+
class FieldWarning
|
|
170
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
171
|
+
|
|
172
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
173
|
+
end
|
|
174
|
+
|
|
169
175
|
class GcpWrappedKeyInfo
|
|
170
176
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
171
177
|
|
|
172
178
|
include Google::Apis::Core::JsonObjectSupport
|
|
173
179
|
end
|
|
174
180
|
|
|
181
|
+
class GoogleUserIdData
|
|
182
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
183
|
+
|
|
184
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
185
|
+
end
|
|
186
|
+
|
|
175
187
|
class IngestAdEventsRequest
|
|
176
188
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
177
189
|
|
|
@@ -226,6 +238,12 @@ module Google
|
|
|
226
238
|
include Google::Apis::Core::JsonObjectSupport
|
|
227
239
|
end
|
|
228
240
|
|
|
241
|
+
class IngestGoogleUserIdDataStatus
|
|
242
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
243
|
+
|
|
244
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
245
|
+
end
|
|
246
|
+
|
|
229
247
|
class IngestMobileDataStatus
|
|
230
248
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
231
249
|
|
|
@@ -238,6 +256,12 @@ module Google
|
|
|
238
256
|
include Google::Apis::Core::JsonObjectSupport
|
|
239
257
|
end
|
|
240
258
|
|
|
259
|
+
class IngestPartnerProvidedIdDataStatus
|
|
260
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
261
|
+
|
|
262
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
263
|
+
end
|
|
264
|
+
|
|
241
265
|
class IngestPpidDataStatus
|
|
242
266
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
243
267
|
|
|
@@ -376,6 +400,12 @@ module Google
|
|
|
376
400
|
include Google::Apis::Core::JsonObjectSupport
|
|
377
401
|
end
|
|
378
402
|
|
|
403
|
+
class PartnerProvidedIdData
|
|
404
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
405
|
+
|
|
406
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
407
|
+
end
|
|
408
|
+
|
|
379
409
|
class PpidData
|
|
380
410
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
381
411
|
|
|
@@ -394,6 +424,24 @@ module Google
|
|
|
394
424
|
include Google::Apis::Core::JsonObjectSupport
|
|
395
425
|
end
|
|
396
426
|
|
|
427
|
+
class RemoveAllAudienceMembersRequest
|
|
428
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
429
|
+
|
|
430
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
431
|
+
end
|
|
432
|
+
|
|
433
|
+
class RemoveAllAudienceMembersResponse
|
|
434
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
435
|
+
|
|
436
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
437
|
+
end
|
|
438
|
+
|
|
439
|
+
class RemoveAllAudienceMembersStatus
|
|
440
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
441
|
+
|
|
442
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
443
|
+
end
|
|
444
|
+
|
|
397
445
|
class RemoveAudienceMembersRequest
|
|
398
446
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
399
447
|
|
|
@@ -418,6 +466,12 @@ module Google
|
|
|
418
466
|
include Google::Apis::Core::JsonObjectSupport
|
|
419
467
|
end
|
|
420
468
|
|
|
469
|
+
class RemoveGoogleUserIdDataStatus
|
|
470
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
471
|
+
|
|
472
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
473
|
+
end
|
|
474
|
+
|
|
421
475
|
class RemoveMobileDataStatus
|
|
422
476
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
423
477
|
|
|
@@ -430,6 +484,12 @@ module Google
|
|
|
430
484
|
include Google::Apis::Core::JsonObjectSupport
|
|
431
485
|
end
|
|
432
486
|
|
|
487
|
+
class RemovePartnerProvidedIdDataStatus
|
|
488
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
489
|
+
|
|
490
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
491
|
+
end
|
|
492
|
+
|
|
433
493
|
class RemovePpidDataStatus
|
|
434
494
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
435
495
|
|
|
@@ -655,6 +715,9 @@ module Google
|
|
|
655
715
|
class AddressInfo
|
|
656
716
|
# @private
|
|
657
717
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
718
|
+
property :address_line, as: 'addressLine'
|
|
719
|
+
property :administrative_area, as: 'administrativeArea'
|
|
720
|
+
property :city, as: 'city'
|
|
658
721
|
property :family_name, as: 'familyName'
|
|
659
722
|
property :given_name, as: 'givenName'
|
|
660
723
|
property :postal_code, as: 'postalCode'
|
|
@@ -670,10 +733,14 @@ module Google
|
|
|
670
733
|
property :consent, as: 'consent', class: Google::Apis::DatamanagerV1::Consent, decorator: Google::Apis::DatamanagerV1::Consent::Representation
|
|
671
734
|
|
|
672
735
|
collection :destination_references, as: 'destinationReferences'
|
|
736
|
+
property :google_user_id_data, as: 'googleUserIdData', class: Google::Apis::DatamanagerV1::GoogleUserIdData, decorator: Google::Apis::DatamanagerV1::GoogleUserIdData::Representation
|
|
737
|
+
|
|
673
738
|
property :mobile_data, as: 'mobileData', class: Google::Apis::DatamanagerV1::MobileData, decorator: Google::Apis::DatamanagerV1::MobileData::Representation
|
|
674
739
|
|
|
675
740
|
property :pair_data, as: 'pairData', class: Google::Apis::DatamanagerV1::PairData, decorator: Google::Apis::DatamanagerV1::PairData::Representation
|
|
676
741
|
|
|
742
|
+
property :partner_provided_id_data, as: 'partnerProvidedIdData', class: Google::Apis::DatamanagerV1::PartnerProvidedIdData, decorator: Google::Apis::DatamanagerV1::PartnerProvidedIdData::Representation
|
|
743
|
+
|
|
677
744
|
property :ppid_data, as: 'ppidData', class: Google::Apis::DatamanagerV1::PpidData, decorator: Google::Apis::DatamanagerV1::PpidData::Representation
|
|
678
745
|
|
|
679
746
|
property :user_data, as: 'userData', class: Google::Apis::DatamanagerV1::UserData, decorator: Google::Apis::DatamanagerV1::UserData::Representation
|
|
@@ -909,6 +976,15 @@ module Google
|
|
|
909
976
|
end
|
|
910
977
|
end
|
|
911
978
|
|
|
979
|
+
class FieldWarning
|
|
980
|
+
# @private
|
|
981
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
982
|
+
property :description, as: 'description'
|
|
983
|
+
property :field, as: 'field'
|
|
984
|
+
property :reason, as: 'reason'
|
|
985
|
+
end
|
|
986
|
+
end
|
|
987
|
+
|
|
912
988
|
class GcpWrappedKeyInfo
|
|
913
989
|
# @private
|
|
914
990
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -919,6 +995,13 @@ module Google
|
|
|
919
995
|
end
|
|
920
996
|
end
|
|
921
997
|
|
|
998
|
+
class GoogleUserIdData
|
|
999
|
+
# @private
|
|
1000
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1001
|
+
collection :google_user_ids, as: 'googleUserIds'
|
|
1002
|
+
end
|
|
1003
|
+
end
|
|
1004
|
+
|
|
922
1005
|
class IngestAdEventsRequest
|
|
923
1006
|
# @private
|
|
924
1007
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -957,6 +1040,8 @@ module Google
|
|
|
957
1040
|
class IngestAudienceMembersResponse
|
|
958
1041
|
# @private
|
|
959
1042
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1043
|
+
collection :field_warnings, as: 'fieldWarnings', class: Google::Apis::DatamanagerV1::FieldWarning, decorator: Google::Apis::DatamanagerV1::FieldWarning::Representation
|
|
1044
|
+
|
|
960
1045
|
property :request_id, as: 'requestId'
|
|
961
1046
|
end
|
|
962
1047
|
end
|
|
@@ -966,10 +1051,14 @@ module Google
|
|
|
966
1051
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
967
1052
|
property :composite_data_ingestion_status, as: 'compositeDataIngestionStatus', class: Google::Apis::DatamanagerV1::IngestCompositeDataStatus, decorator: Google::Apis::DatamanagerV1::IngestCompositeDataStatus::Representation
|
|
968
1053
|
|
|
1054
|
+
property :google_user_id_data_ingestion_status, as: 'googleUserIdDataIngestionStatus', class: Google::Apis::DatamanagerV1::IngestGoogleUserIdDataStatus, decorator: Google::Apis::DatamanagerV1::IngestGoogleUserIdDataStatus::Representation
|
|
1055
|
+
|
|
969
1056
|
property :mobile_data_ingestion_status, as: 'mobileDataIngestionStatus', class: Google::Apis::DatamanagerV1::IngestMobileDataStatus, decorator: Google::Apis::DatamanagerV1::IngestMobileDataStatus::Representation
|
|
970
1057
|
|
|
971
1058
|
property :pair_data_ingestion_status, as: 'pairDataIngestionStatus', class: Google::Apis::DatamanagerV1::IngestPairDataStatus, decorator: Google::Apis::DatamanagerV1::IngestPairDataStatus::Representation
|
|
972
1059
|
|
|
1060
|
+
property :partner_provided_id_data_ingestion_status, as: 'partnerProvidedIdDataIngestionStatus', class: Google::Apis::DatamanagerV1::IngestPartnerProvidedIdDataStatus, decorator: Google::Apis::DatamanagerV1::IngestPartnerProvidedIdDataStatus::Representation
|
|
1061
|
+
|
|
973
1062
|
property :ppid_data_ingestion_status, as: 'ppidDataIngestionStatus', class: Google::Apis::DatamanagerV1::IngestPpidDataStatus, decorator: Google::Apis::DatamanagerV1::IngestPpidDataStatus::Representation
|
|
974
1063
|
|
|
975
1064
|
property :user_data_ingestion_status, as: 'userDataIngestionStatus', class: Google::Apis::DatamanagerV1::IngestUserDataStatus, decorator: Google::Apis::DatamanagerV1::IngestUserDataStatus::Representation
|
|
@@ -1008,6 +1097,8 @@ module Google
|
|
|
1008
1097
|
class IngestEventsResponse
|
|
1009
1098
|
# @private
|
|
1010
1099
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1100
|
+
collection :field_warnings, as: 'fieldWarnings', class: Google::Apis::DatamanagerV1::FieldWarning, decorator: Google::Apis::DatamanagerV1::FieldWarning::Representation
|
|
1101
|
+
|
|
1011
1102
|
property :request_id, as: 'requestId'
|
|
1012
1103
|
end
|
|
1013
1104
|
end
|
|
@@ -1019,6 +1110,14 @@ module Google
|
|
|
1019
1110
|
end
|
|
1020
1111
|
end
|
|
1021
1112
|
|
|
1113
|
+
class IngestGoogleUserIdDataStatus
|
|
1114
|
+
# @private
|
|
1115
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1116
|
+
property :google_user_id_count, :numeric_string => true, as: 'googleUserIdCount'
|
|
1117
|
+
property :record_count, :numeric_string => true, as: 'recordCount'
|
|
1118
|
+
end
|
|
1119
|
+
end
|
|
1120
|
+
|
|
1022
1121
|
class IngestMobileDataStatus
|
|
1023
1122
|
# @private
|
|
1024
1123
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1035,6 +1134,14 @@ module Google
|
|
|
1035
1134
|
end
|
|
1036
1135
|
end
|
|
1037
1136
|
|
|
1137
|
+
class IngestPartnerProvidedIdDataStatus
|
|
1138
|
+
# @private
|
|
1139
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1140
|
+
property :partner_provided_id_count, :numeric_string => true, as: 'partnerProvidedIdCount'
|
|
1141
|
+
property :record_count, :numeric_string => true, as: 'recordCount'
|
|
1142
|
+
end
|
|
1143
|
+
end
|
|
1144
|
+
|
|
1038
1145
|
class IngestPpidDataStatus
|
|
1039
1146
|
# @private
|
|
1040
1147
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1261,6 +1368,13 @@ module Google
|
|
|
1261
1368
|
end
|
|
1262
1369
|
end
|
|
1263
1370
|
|
|
1371
|
+
class PartnerProvidedIdData
|
|
1372
|
+
# @private
|
|
1373
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1374
|
+
collection :partner_provided_ids, as: 'partnerProvidedIds'
|
|
1375
|
+
end
|
|
1376
|
+
end
|
|
1377
|
+
|
|
1264
1378
|
class PpidData
|
|
1265
1379
|
# @private
|
|
1266
1380
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1285,6 +1399,29 @@ module Google
|
|
|
1285
1399
|
end
|
|
1286
1400
|
end
|
|
1287
1401
|
|
|
1402
|
+
class RemoveAllAudienceMembersRequest
|
|
1403
|
+
# @private
|
|
1404
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1405
|
+
collection :destinations, as: 'destinations', class: Google::Apis::DatamanagerV1::Destination, decorator: Google::Apis::DatamanagerV1::Destination::Representation
|
|
1406
|
+
|
|
1407
|
+
property :remove_as_of_time, as: 'removeAsOfTime'
|
|
1408
|
+
property :validate_only, as: 'validateOnly'
|
|
1409
|
+
end
|
|
1410
|
+
end
|
|
1411
|
+
|
|
1412
|
+
class RemoveAllAudienceMembersResponse
|
|
1413
|
+
# @private
|
|
1414
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1415
|
+
property :request_id, as: 'requestId'
|
|
1416
|
+
end
|
|
1417
|
+
end
|
|
1418
|
+
|
|
1419
|
+
class RemoveAllAudienceMembersStatus
|
|
1420
|
+
# @private
|
|
1421
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1422
|
+
end
|
|
1423
|
+
end
|
|
1424
|
+
|
|
1288
1425
|
class RemoveAudienceMembersRequest
|
|
1289
1426
|
# @private
|
|
1290
1427
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1311,10 +1448,14 @@ module Google
|
|
|
1311
1448
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1312
1449
|
property :composite_data_removal_status, as: 'compositeDataRemovalStatus', class: Google::Apis::DatamanagerV1::RemoveCompositeDataStatus, decorator: Google::Apis::DatamanagerV1::RemoveCompositeDataStatus::Representation
|
|
1313
1450
|
|
|
1451
|
+
property :google_user_id_data_removal_status, as: 'googleUserIdDataRemovalStatus', class: Google::Apis::DatamanagerV1::RemoveGoogleUserIdDataStatus, decorator: Google::Apis::DatamanagerV1::RemoveGoogleUserIdDataStatus::Representation
|
|
1452
|
+
|
|
1314
1453
|
property :mobile_data_removal_status, as: 'mobileDataRemovalStatus', class: Google::Apis::DatamanagerV1::RemoveMobileDataStatus, decorator: Google::Apis::DatamanagerV1::RemoveMobileDataStatus::Representation
|
|
1315
1454
|
|
|
1316
1455
|
property :pair_data_removal_status, as: 'pairDataRemovalStatus', class: Google::Apis::DatamanagerV1::RemovePairDataStatus, decorator: Google::Apis::DatamanagerV1::RemovePairDataStatus::Representation
|
|
1317
1456
|
|
|
1457
|
+
property :partner_provided_id_data_removal_status, as: 'partnerProvidedIdDataRemovalStatus', class: Google::Apis::DatamanagerV1::RemovePartnerProvidedIdDataStatus, decorator: Google::Apis::DatamanagerV1::RemovePartnerProvidedIdDataStatus::Representation
|
|
1458
|
+
|
|
1318
1459
|
property :ppid_data_removal_status, as: 'ppidDataRemovalStatus', class: Google::Apis::DatamanagerV1::RemovePpidDataStatus, decorator: Google::Apis::DatamanagerV1::RemovePpidDataStatus::Representation
|
|
1319
1460
|
|
|
1320
1461
|
property :user_data_removal_status, as: 'userDataRemovalStatus', class: Google::Apis::DatamanagerV1::RemoveUserDataStatus, decorator: Google::Apis::DatamanagerV1::RemoveUserDataStatus::Representation
|
|
@@ -1333,6 +1474,14 @@ module Google
|
|
|
1333
1474
|
end
|
|
1334
1475
|
end
|
|
1335
1476
|
|
|
1477
|
+
class RemoveGoogleUserIdDataStatus
|
|
1478
|
+
# @private
|
|
1479
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1480
|
+
property :google_user_id_count, :numeric_string => true, as: 'googleUserIdCount'
|
|
1481
|
+
property :record_count, :numeric_string => true, as: 'recordCount'
|
|
1482
|
+
end
|
|
1483
|
+
end
|
|
1484
|
+
|
|
1336
1485
|
class RemoveMobileDataStatus
|
|
1337
1486
|
# @private
|
|
1338
1487
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1349,6 +1498,14 @@ module Google
|
|
|
1349
1498
|
end
|
|
1350
1499
|
end
|
|
1351
1500
|
|
|
1501
|
+
class RemovePartnerProvidedIdDataStatus
|
|
1502
|
+
# @private
|
|
1503
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1504
|
+
property :partner_provided_id_count, :numeric_string => true, as: 'partnerProvidedIdCount'
|
|
1505
|
+
property :record_count, :numeric_string => true, as: 'recordCount'
|
|
1506
|
+
end
|
|
1507
|
+
end
|
|
1508
|
+
|
|
1352
1509
|
class RemovePpidDataStatus
|
|
1353
1510
|
# @private
|
|
1354
1511
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1386,6 +1543,8 @@ module Google
|
|
|
1386
1543
|
|
|
1387
1544
|
property :events_ingestion_status, as: 'eventsIngestionStatus', class: Google::Apis::DatamanagerV1::IngestEventsStatus, decorator: Google::Apis::DatamanagerV1::IngestEventsStatus::Representation
|
|
1388
1545
|
|
|
1546
|
+
property :remove_all_audience_members_status, as: 'removeAllAudienceMembersStatus', class: Google::Apis::DatamanagerV1::RemoveAllAudienceMembersStatus, decorator: Google::Apis::DatamanagerV1::RemoveAllAudienceMembersStatus::Representation
|
|
1547
|
+
|
|
1389
1548
|
property :request_status, as: 'requestStatus'
|
|
1390
1549
|
property :warning_info, as: 'warningInfo', class: Google::Apis::DatamanagerV1::WarningInfo, decorator: Google::Apis::DatamanagerV1::WarningInfo::Representation
|
|
1391
1550
|
|
|
@@ -934,6 +934,36 @@ module Google
|
|
|
934
934
|
execute_or_queue_command(command, &block)
|
|
935
935
|
end
|
|
936
936
|
|
|
937
|
+
# Removes all audience members from the provided destinations.
|
|
938
|
+
# @param [Google::Apis::DatamanagerV1::RemoveAllAudienceMembersRequest] remove_all_audience_members_request_object
|
|
939
|
+
# @param [String] fields
|
|
940
|
+
# Selector specifying which fields to include in a partial response.
|
|
941
|
+
# @param [String] quota_user
|
|
942
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
943
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
944
|
+
# @param [Google::Apis::RequestOptions] options
|
|
945
|
+
# Request-specific options
|
|
946
|
+
#
|
|
947
|
+
# @yield [result, err] Result & error if block supplied
|
|
948
|
+
# @yieldparam result [Google::Apis::DatamanagerV1::RemoveAllAudienceMembersResponse] parsed result object
|
|
949
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
950
|
+
#
|
|
951
|
+
# @return [Google::Apis::DatamanagerV1::RemoveAllAudienceMembersResponse]
|
|
952
|
+
#
|
|
953
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
954
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
955
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
956
|
+
def remove_all_audience_members(remove_all_audience_members_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
957
|
+
command = make_simple_command(:post, 'v1/audienceMembers:removeAll', options)
|
|
958
|
+
command.request_representation = Google::Apis::DatamanagerV1::RemoveAllAudienceMembersRequest::Representation
|
|
959
|
+
command.request_object = remove_all_audience_members_request_object
|
|
960
|
+
command.response_representation = Google::Apis::DatamanagerV1::RemoveAllAudienceMembersResponse::Representation
|
|
961
|
+
command.response_class = Google::Apis::DatamanagerV1::RemoveAllAudienceMembersResponse
|
|
962
|
+
command.query['fields'] = fields unless fields.nil?
|
|
963
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
964
|
+
execute_or_queue_command(command, &block)
|
|
965
|
+
end
|
|
966
|
+
|
|
937
967
|
# Uploads a list of Event resources from the provided Destination.
|
|
938
968
|
# @param [Google::Apis::DatamanagerV1::IngestEventsRequest] ingest_events_request_object
|
|
939
969
|
# @param [String] fields
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-datamanager_v1
|
|
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
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datamanager_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-datamanager_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-datamanager_v1/v0.12.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datamanager_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|