google-apis-analyticsadmin_v1alpha 0.45.0 → 0.47.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: 73b57fe447e2fc51d94329a3523349ff7248c3d1d9260ad6d98290e9a9fdc93f
4
- data.tar.gz: 35465b8de277c261d05424494dbaa1464cfd98f8b5eb83436d15cd92cfaf1191
3
+ metadata.gz: e48858b17ccbd766a2b14b33f786452b8487d884df3f4e04d77695f73d1810df
4
+ data.tar.gz: f45ca4f49023587814900e88801bd306b7386b93c2c3c53c311504a2b0765415
5
5
  SHA512:
6
- metadata.gz: 0fc2da45405f47830a40634eb8fc7786d75a0f56b4c67e6fb73e3083cc06215445264c4a49df7604365a731af900a848533f0ce5faccbc532bbf66d1a7e8e29e
7
- data.tar.gz: 43ca41788f6059b4ff8a1f44d2445886ee6f84b30e5336c443bc6b5ce949b25d8b7d99cfb20ae508edf2ffe96b9928c0ffd1a5e7c7fe591bcf4d6fba553a345c
6
+ metadata.gz: 815abcf6bbe8ab791bb06974f98a5355bebc508ae9bbc5ebf2a6993fb3022f0f1ad0f1526605f457d7624966832fed5369d5393a94631b1ae7dceca4ce891be0
7
+ data.tar.gz: 3ea96dd9c05f05399f7a003ae2a3588a3f97b3be5e8e9292e1e96b9d613e839c956044a756d68846ee75c174479edc1774e3e71e25e76e7e7ef5fcc248339621
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-analyticsadmin_v1alpha
2
2
 
3
+ ### v0.47.0 (2023-02-15)
4
+
5
+ * Regenerated from discovery document revision 20230214
6
+ * Regenerated using generator version 0.12.0
7
+
8
+ ### v0.46.0 (2023-02-12)
9
+
10
+ * Regenerated from discovery document revision 20230203
11
+
3
12
  ### v0.45.0 (2023-02-05)
4
13
 
5
14
  * Regenerated from discovery document revision 20230131
@@ -47,6 +47,44 @@ module Google
47
47
  end
48
48
  end
49
49
 
50
+ # A binding of a user to a set of roles.
51
+ class GoogleAnalyticsAdminV1alphaAccessBinding
52
+ include Google::Apis::Core::Hashable
53
+
54
+ # Output only. Resource name of this binding. Format: accounts/`account`/
55
+ # accessBindings/`access_binding` or properties/`property`/accessBindings/`
56
+ # access_binding` Example: "accounts/100/accessBindings/200"
57
+ # Corresponds to the JSON property `name`
58
+ # @return [String]
59
+ attr_accessor :name
60
+
61
+ # A list of roles for to grant to the parent resource. Valid values:
62
+ # predefinedRoles/viewer predefinedRoles/analyst predefinedRoles/editor
63
+ # predefinedRoles/admin predefinedRoles/no-cost-data predefinedRoles/no-revenue-
64
+ # data For users, if an empty list of roles is set, this AccessBinding will be
65
+ # deleted.
66
+ # Corresponds to the JSON property `roles`
67
+ # @return [Array<String>]
68
+ attr_accessor :roles
69
+
70
+ # If set, the email address of the user to set roles for. Format: "someuser@
71
+ # gmail.com"
72
+ # Corresponds to the JSON property `user`
73
+ # @return [String]
74
+ attr_accessor :user
75
+
76
+ def initialize(**args)
77
+ update!(**args)
78
+ end
79
+
80
+ # Update properties of this object
81
+ def update!(**args)
82
+ @name = args[:name] if args.key?(:name)
83
+ @roles = args[:roles] if args.key?(:roles)
84
+ @user = args[:user] if args.key?(:user)
85
+ end
86
+ end
87
+
50
88
  # A contiguous range of days: startDate, startDate + 1, ..., endDate.
51
89
  class GoogleAnalyticsAdminV1alphaAccessDateRange
52
90
  include Google::Apis::Core::Hashable
@@ -1438,6 +1476,45 @@ module Google
1438
1476
  end
1439
1477
  end
1440
1478
 
1479
+ # Request message for BatchCreateAccessBindings RPC.
1480
+ class GoogleAnalyticsAdminV1alphaBatchCreateAccessBindingsRequest
1481
+ include Google::Apis::Core::Hashable
1482
+
1483
+ # Required. The requests specifying the access bindings to create. A maximum of
1484
+ # 1000 access bindings can be created in a batch.
1485
+ # Corresponds to the JSON property `requests`
1486
+ # @return [Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaCreateAccessBindingRequest>]
1487
+ attr_accessor :requests
1488
+
1489
+ def initialize(**args)
1490
+ update!(**args)
1491
+ end
1492
+
1493
+ # Update properties of this object
1494
+ def update!(**args)
1495
+ @requests = args[:requests] if args.key?(:requests)
1496
+ end
1497
+ end
1498
+
1499
+ # Response message for BatchCreateAccessBindings RPC.
1500
+ class GoogleAnalyticsAdminV1alphaBatchCreateAccessBindingsResponse
1501
+ include Google::Apis::Core::Hashable
1502
+
1503
+ # The access bindings created.
1504
+ # Corresponds to the JSON property `accessBindings`
1505
+ # @return [Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaAccessBinding>]
1506
+ attr_accessor :access_bindings
1507
+
1508
+ def initialize(**args)
1509
+ update!(**args)
1510
+ end
1511
+
1512
+ # Update properties of this object
1513
+ def update!(**args)
1514
+ @access_bindings = args[:access_bindings] if args.key?(:access_bindings)
1515
+ end
1516
+ end
1517
+
1441
1518
  # Request message for BatchCreateUserLinks RPC.
1442
1519
  class GoogleAnalyticsAdminV1alphaBatchCreateUserLinksRequest
1443
1520
  include Google::Apis::Core::Hashable
@@ -1486,6 +1563,26 @@ module Google
1486
1563
  end
1487
1564
  end
1488
1565
 
1566
+ # Request message for BatchDeleteAccessBindings RPC.
1567
+ class GoogleAnalyticsAdminV1alphaBatchDeleteAccessBindingsRequest
1568
+ include Google::Apis::Core::Hashable
1569
+
1570
+ # Required. The requests specifying the access bindings to delete. A maximum of
1571
+ # 1000 access bindings can be deleted in a batch.
1572
+ # Corresponds to the JSON property `requests`
1573
+ # @return [Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDeleteAccessBindingRequest>]
1574
+ attr_accessor :requests
1575
+
1576
+ def initialize(**args)
1577
+ update!(**args)
1578
+ end
1579
+
1580
+ # Update properties of this object
1581
+ def update!(**args)
1582
+ @requests = args[:requests] if args.key?(:requests)
1583
+ end
1584
+ end
1585
+
1489
1586
  # Request message for BatchDeleteUserLinks RPC.
1490
1587
  class GoogleAnalyticsAdminV1alphaBatchDeleteUserLinksRequest
1491
1588
  include Google::Apis::Core::Hashable
@@ -1506,6 +1603,25 @@ module Google
1506
1603
  end
1507
1604
  end
1508
1605
 
1606
+ # Response message for BatchGetAccessBindings RPC.
1607
+ class GoogleAnalyticsAdminV1alphaBatchGetAccessBindingsResponse
1608
+ include Google::Apis::Core::Hashable
1609
+
1610
+ # The requested access bindings.
1611
+ # Corresponds to the JSON property `accessBindings`
1612
+ # @return [Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaAccessBinding>]
1613
+ attr_accessor :access_bindings
1614
+
1615
+ def initialize(**args)
1616
+ update!(**args)
1617
+ end
1618
+
1619
+ # Update properties of this object
1620
+ def update!(**args)
1621
+ @access_bindings = args[:access_bindings] if args.key?(:access_bindings)
1622
+ end
1623
+ end
1624
+
1509
1625
  # Response message for BatchGetUserLinks RPC.
1510
1626
  class GoogleAnalyticsAdminV1alphaBatchGetUserLinksResponse
1511
1627
  include Google::Apis::Core::Hashable
@@ -1525,6 +1641,45 @@ module Google
1525
1641
  end
1526
1642
  end
1527
1643
 
1644
+ # Request message for BatchUpdateAccessBindings RPC.
1645
+ class GoogleAnalyticsAdminV1alphaBatchUpdateAccessBindingsRequest
1646
+ include Google::Apis::Core::Hashable
1647
+
1648
+ # Required. The requests specifying the access bindings to update. A maximum of
1649
+ # 1000 access bindings can be updated in a batch.
1650
+ # Corresponds to the JSON property `requests`
1651
+ # @return [Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaUpdateAccessBindingRequest>]
1652
+ attr_accessor :requests
1653
+
1654
+ def initialize(**args)
1655
+ update!(**args)
1656
+ end
1657
+
1658
+ # Update properties of this object
1659
+ def update!(**args)
1660
+ @requests = args[:requests] if args.key?(:requests)
1661
+ end
1662
+ end
1663
+
1664
+ # Response message for BatchUpdateAccessBindings RPC.
1665
+ class GoogleAnalyticsAdminV1alphaBatchUpdateAccessBindingsResponse
1666
+ include Google::Apis::Core::Hashable
1667
+
1668
+ # The access bindings updated.
1669
+ # Corresponds to the JSON property `accessBindings`
1670
+ # @return [Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaAccessBinding>]
1671
+ attr_accessor :access_bindings
1672
+
1673
+ def initialize(**args)
1674
+ update!(**args)
1675
+ end
1676
+
1677
+ # Update properties of this object
1678
+ def update!(**args)
1679
+ @access_bindings = args[:access_bindings] if args.key?(:access_bindings)
1680
+ end
1681
+ end
1682
+
1528
1683
  # Request message for BatchUpdateUserLinks RPC.
1529
1684
  class GoogleAnalyticsAdminV1alphaBatchUpdateUserLinksRequest
1530
1685
  include Google::Apis::Core::Hashable
@@ -1919,6 +2074,31 @@ module Google
1919
2074
  end
1920
2075
  end
1921
2076
 
2077
+ # Request message for CreateAccessBinding RPC.
2078
+ class GoogleAnalyticsAdminV1alphaCreateAccessBindingRequest
2079
+ include Google::Apis::Core::Hashable
2080
+
2081
+ # A binding of a user to a set of roles.
2082
+ # Corresponds to the JSON property `accessBinding`
2083
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaAccessBinding]
2084
+ attr_accessor :access_binding
2085
+
2086
+ # Required. Formats: - accounts/`account` - properties/`property`
2087
+ # Corresponds to the JSON property `parent`
2088
+ # @return [String]
2089
+ attr_accessor :parent
2090
+
2091
+ def initialize(**args)
2092
+ update!(**args)
2093
+ end
2094
+
2095
+ # Update properties of this object
2096
+ def update!(**args)
2097
+ @access_binding = args[:access_binding] if args.key?(:access_binding)
2098
+ @parent = args[:parent] if args.key?(:parent)
2099
+ end
2100
+ end
2101
+
1922
2102
  # Request message for CreateUserLink RPC. Users can have multiple email
1923
2103
  # addresses associated with their Google account, and one of these email
1924
2104
  # addresses is the "primary" email address. Any of the email addresses
@@ -2328,6 +2508,26 @@ module Google
2328
2508
  end
2329
2509
  end
2330
2510
 
2511
+ # Request message for DeleteAccessBinding RPC.
2512
+ class GoogleAnalyticsAdminV1alphaDeleteAccessBindingRequest
2513
+ include Google::Apis::Core::Hashable
2514
+
2515
+ # Required. Formats: - accounts/`account`/accessBindings/`accessBinding` -
2516
+ # properties/`property`/accessBindings/`accessBinding`
2517
+ # Corresponds to the JSON property `name`
2518
+ # @return [String]
2519
+ attr_accessor :name
2520
+
2521
+ def initialize(**args)
2522
+ update!(**args)
2523
+ end
2524
+
2525
+ # Update properties of this object
2526
+ def update!(**args)
2527
+ @name = args[:name] if args.key?(:name)
2528
+ end
2529
+ end
2530
+
2331
2531
  # Request message for DeleteUserLink RPC.
2332
2532
  class GoogleAnalyticsAdminV1alphaDeleteUserLinkRequest
2333
2533
  include Google::Apis::Core::Hashable
@@ -2923,6 +3123,33 @@ module Google
2923
3123
  end
2924
3124
  end
2925
3125
 
3126
+ # Response message for ListAccessBindings RPC.
3127
+ class GoogleAnalyticsAdminV1alphaListAccessBindingsResponse
3128
+ include Google::Apis::Core::Hashable
3129
+
3130
+ # List of AccessBindings. These will be ordered stably, but in an arbitrary
3131
+ # order.
3132
+ # Corresponds to the JSON property `accessBindings`
3133
+ # @return [Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaAccessBinding>]
3134
+ attr_accessor :access_bindings
3135
+
3136
+ # A token, which can be sent as `page_token` to retrieve the next page. If this
3137
+ # field is omitted, there are no subsequent pages.
3138
+ # Corresponds to the JSON property `nextPageToken`
3139
+ # @return [String]
3140
+ attr_accessor :next_page_token
3141
+
3142
+ def initialize(**args)
3143
+ update!(**args)
3144
+ end
3145
+
3146
+ # Update properties of this object
3147
+ def update!(**args)
3148
+ @access_bindings = args[:access_bindings] if args.key?(:access_bindings)
3149
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
3150
+ end
3151
+ end
3152
+
2926
3153
  # Response message for ListAccountSummaries RPC.
2927
3154
  class GoogleAnalyticsAdminV1alphaListAccountSummariesResponse
2928
3155
  include Google::Apis::Core::Hashable
@@ -3557,7 +3784,7 @@ module Google
3557
3784
  attr_accessor :account
3558
3785
 
3559
3786
  # Redirect URI where the user will be sent after accepting Terms of Service.
3560
- # Must be configured in Developers Console as a Redirect URI
3787
+ # Must be configured in Developers Console as a Redirect URI.
3561
3788
  # Corresponds to the JSON property `redirectUri`
3562
3789
  # @return [String]
3563
3790
  attr_accessor :redirect_uri
@@ -3954,6 +4181,25 @@ module Google
3954
4181
  end
3955
4182
  end
3956
4183
 
4184
+ # Request message for UpdateAccessBinding RPC.
4185
+ class GoogleAnalyticsAdminV1alphaUpdateAccessBindingRequest
4186
+ include Google::Apis::Core::Hashable
4187
+
4188
+ # A binding of a user to a set of roles.
4189
+ # Corresponds to the JSON property `accessBinding`
4190
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaAccessBinding]
4191
+ attr_accessor :access_binding
4192
+
4193
+ def initialize(**args)
4194
+ update!(**args)
4195
+ end
4196
+
4197
+ # Update properties of this object
4198
+ def update!(**args)
4199
+ @access_binding = args[:access_binding] if args.key?(:access_binding)
4200
+ end
4201
+ end
4202
+
3957
4203
  # Request message for UpdateUserLink RPC.
3958
4204
  class GoogleAnalyticsAdminV1alphaUpdateUserLinkRequest
3959
4205
  include Google::Apis::Core::Hashable
@@ -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.45.0"
19
+ GEM_VERSION = "0.47.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.11.1"
22
+ GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230131"
25
+ REVISION = "20230214"
26
26
  end
27
27
  end
28
28
  end
@@ -28,6 +28,12 @@ module Google
28
28
  include Google::Apis::Core::JsonObjectSupport
29
29
  end
30
30
 
31
+ class GoogleAnalyticsAdminV1alphaAccessBinding
32
+ class Representation < Google::Apis::Core::JsonRepresentation; end
33
+
34
+ include Google::Apis::Core::JsonObjectSupport
35
+ end
36
+
31
37
  class GoogleAnalyticsAdminV1alphaAccessDateRange
32
38
  class Representation < Google::Apis::Core::JsonRepresentation; end
33
39
 
@@ -310,6 +316,18 @@ module Google
310
316
  include Google::Apis::Core::JsonObjectSupport
311
317
  end
312
318
 
319
+ class GoogleAnalyticsAdminV1alphaBatchCreateAccessBindingsRequest
320
+ class Representation < Google::Apis::Core::JsonRepresentation; end
321
+
322
+ include Google::Apis::Core::JsonObjectSupport
323
+ end
324
+
325
+ class GoogleAnalyticsAdminV1alphaBatchCreateAccessBindingsResponse
326
+ class Representation < Google::Apis::Core::JsonRepresentation; end
327
+
328
+ include Google::Apis::Core::JsonObjectSupport
329
+ end
330
+
313
331
  class GoogleAnalyticsAdminV1alphaBatchCreateUserLinksRequest
314
332
  class Representation < Google::Apis::Core::JsonRepresentation; end
315
333
 
@@ -322,18 +340,42 @@ module Google
322
340
  include Google::Apis::Core::JsonObjectSupport
323
341
  end
324
342
 
343
+ class GoogleAnalyticsAdminV1alphaBatchDeleteAccessBindingsRequest
344
+ class Representation < Google::Apis::Core::JsonRepresentation; end
345
+
346
+ include Google::Apis::Core::JsonObjectSupport
347
+ end
348
+
325
349
  class GoogleAnalyticsAdminV1alphaBatchDeleteUserLinksRequest
326
350
  class Representation < Google::Apis::Core::JsonRepresentation; end
327
351
 
328
352
  include Google::Apis::Core::JsonObjectSupport
329
353
  end
330
354
 
355
+ class GoogleAnalyticsAdminV1alphaBatchGetAccessBindingsResponse
356
+ class Representation < Google::Apis::Core::JsonRepresentation; end
357
+
358
+ include Google::Apis::Core::JsonObjectSupport
359
+ end
360
+
331
361
  class GoogleAnalyticsAdminV1alphaBatchGetUserLinksResponse
332
362
  class Representation < Google::Apis::Core::JsonRepresentation; end
333
363
 
334
364
  include Google::Apis::Core::JsonObjectSupport
335
365
  end
336
366
 
367
+ class GoogleAnalyticsAdminV1alphaBatchUpdateAccessBindingsRequest
368
+ class Representation < Google::Apis::Core::JsonRepresentation; end
369
+
370
+ include Google::Apis::Core::JsonObjectSupport
371
+ end
372
+
373
+ class GoogleAnalyticsAdminV1alphaBatchUpdateAccessBindingsResponse
374
+ class Representation < Google::Apis::Core::JsonRepresentation; end
375
+
376
+ include Google::Apis::Core::JsonObjectSupport
377
+ end
378
+
337
379
  class GoogleAnalyticsAdminV1alphaBatchUpdateUserLinksRequest
338
380
  class Representation < Google::Apis::Core::JsonRepresentation; end
339
381
 
@@ -382,6 +424,12 @@ module Google
382
424
  include Google::Apis::Core::JsonObjectSupport
383
425
  end
384
426
 
427
+ class GoogleAnalyticsAdminV1alphaCreateAccessBindingRequest
428
+ class Representation < Google::Apis::Core::JsonRepresentation; end
429
+
430
+ include Google::Apis::Core::JsonObjectSupport
431
+ end
432
+
385
433
  class GoogleAnalyticsAdminV1alphaCreateUserLinkRequest
386
434
  class Representation < Google::Apis::Core::JsonRepresentation; end
387
435
 
@@ -436,6 +484,12 @@ module Google
436
484
  include Google::Apis::Core::JsonObjectSupport
437
485
  end
438
486
 
487
+ class GoogleAnalyticsAdminV1alphaDeleteAccessBindingRequest
488
+ class Representation < Google::Apis::Core::JsonRepresentation; end
489
+
490
+ include Google::Apis::Core::JsonObjectSupport
491
+ end
492
+
439
493
  class GoogleAnalyticsAdminV1alphaDeleteUserLinkRequest
440
494
  class Representation < Google::Apis::Core::JsonRepresentation; end
441
495
 
@@ -532,6 +586,12 @@ module Google
532
586
  include Google::Apis::Core::JsonObjectSupport
533
587
  end
534
588
 
589
+ class GoogleAnalyticsAdminV1alphaListAccessBindingsResponse
590
+ class Representation < Google::Apis::Core::JsonRepresentation; end
591
+
592
+ include Google::Apis::Core::JsonObjectSupport
593
+ end
594
+
535
595
  class GoogleAnalyticsAdminV1alphaListAccountSummariesResponse
536
596
  class Representation < Google::Apis::Core::JsonRepresentation; end
537
597
 
@@ -706,6 +766,12 @@ module Google
706
766
  include Google::Apis::Core::JsonObjectSupport
707
767
  end
708
768
 
769
+ class GoogleAnalyticsAdminV1alphaUpdateAccessBindingRequest
770
+ class Representation < Google::Apis::Core::JsonRepresentation; end
771
+
772
+ include Google::Apis::Core::JsonObjectSupport
773
+ end
774
+
709
775
  class GoogleAnalyticsAdminV1alphaUpdateUserLinkRequest
710
776
  class Representation < Google::Apis::Core::JsonRepresentation; end
711
777
 
@@ -734,6 +800,15 @@ module Google
734
800
  end
735
801
  end
736
802
 
803
+ class GoogleAnalyticsAdminV1alphaAccessBinding
804
+ # @private
805
+ class Representation < Google::Apis::Core::JsonRepresentation
806
+ property :name, as: 'name'
807
+ collection :roles, as: 'roles'
808
+ property :user, as: 'user'
809
+ end
810
+ end
811
+
737
812
  class GoogleAnalyticsAdminV1alphaAccessDateRange
738
813
  # @private
739
814
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1171,6 +1246,22 @@ module Google
1171
1246
  end
1172
1247
  end
1173
1248
 
1249
+ class GoogleAnalyticsAdminV1alphaBatchCreateAccessBindingsRequest
1250
+ # @private
1251
+ class Representation < Google::Apis::Core::JsonRepresentation
1252
+ collection :requests, as: 'requests', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaCreateAccessBindingRequest, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaCreateAccessBindingRequest::Representation
1253
+
1254
+ end
1255
+ end
1256
+
1257
+ class GoogleAnalyticsAdminV1alphaBatchCreateAccessBindingsResponse
1258
+ # @private
1259
+ class Representation < Google::Apis::Core::JsonRepresentation
1260
+ collection :access_bindings, as: 'accessBindings', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaAccessBinding, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaAccessBinding::Representation
1261
+
1262
+ end
1263
+ end
1264
+
1174
1265
  class GoogleAnalyticsAdminV1alphaBatchCreateUserLinksRequest
1175
1266
  # @private
1176
1267
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1188,6 +1279,14 @@ module Google
1188
1279
  end
1189
1280
  end
1190
1281
 
1282
+ class GoogleAnalyticsAdminV1alphaBatchDeleteAccessBindingsRequest
1283
+ # @private
1284
+ class Representation < Google::Apis::Core::JsonRepresentation
1285
+ collection :requests, as: 'requests', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDeleteAccessBindingRequest, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDeleteAccessBindingRequest::Representation
1286
+
1287
+ end
1288
+ end
1289
+
1191
1290
  class GoogleAnalyticsAdminV1alphaBatchDeleteUserLinksRequest
1192
1291
  # @private
1193
1292
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1196,6 +1295,14 @@ module Google
1196
1295
  end
1197
1296
  end
1198
1297
 
1298
+ class GoogleAnalyticsAdminV1alphaBatchGetAccessBindingsResponse
1299
+ # @private
1300
+ class Representation < Google::Apis::Core::JsonRepresentation
1301
+ collection :access_bindings, as: 'accessBindings', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaAccessBinding, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaAccessBinding::Representation
1302
+
1303
+ end
1304
+ end
1305
+
1199
1306
  class GoogleAnalyticsAdminV1alphaBatchGetUserLinksResponse
1200
1307
  # @private
1201
1308
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1204,6 +1311,22 @@ module Google
1204
1311
  end
1205
1312
  end
1206
1313
 
1314
+ class GoogleAnalyticsAdminV1alphaBatchUpdateAccessBindingsRequest
1315
+ # @private
1316
+ class Representation < Google::Apis::Core::JsonRepresentation
1317
+ collection :requests, as: 'requests', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaUpdateAccessBindingRequest, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaUpdateAccessBindingRequest::Representation
1318
+
1319
+ end
1320
+ end
1321
+
1322
+ class GoogleAnalyticsAdminV1alphaBatchUpdateAccessBindingsResponse
1323
+ # @private
1324
+ class Representation < Google::Apis::Core::JsonRepresentation
1325
+ collection :access_bindings, as: 'accessBindings', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaAccessBinding, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaAccessBinding::Representation
1326
+
1327
+ end
1328
+ end
1329
+
1207
1330
  class GoogleAnalyticsAdminV1alphaBatchUpdateUserLinksRequest
1208
1331
  # @private
1209
1332
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1316,6 +1439,15 @@ module Google
1316
1439
  end
1317
1440
  end
1318
1441
 
1442
+ class GoogleAnalyticsAdminV1alphaCreateAccessBindingRequest
1443
+ # @private
1444
+ class Representation < Google::Apis::Core::JsonRepresentation
1445
+ property :access_binding, as: 'accessBinding', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaAccessBinding, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaAccessBinding::Representation
1446
+
1447
+ property :parent, as: 'parent'
1448
+ end
1449
+ end
1450
+
1319
1451
  class GoogleAnalyticsAdminV1alphaCreateUserLinkRequest
1320
1452
  # @private
1321
1453
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1414,6 +1546,13 @@ module Google
1414
1546
  end
1415
1547
  end
1416
1548
 
1549
+ class GoogleAnalyticsAdminV1alphaDeleteAccessBindingRequest
1550
+ # @private
1551
+ class Representation < Google::Apis::Core::JsonRepresentation
1552
+ property :name, as: 'name'
1553
+ end
1554
+ end
1555
+
1417
1556
  class GoogleAnalyticsAdminV1alphaDeleteUserLinkRequest
1418
1557
  # @private
1419
1558
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1572,6 +1711,15 @@ module Google
1572
1711
  end
1573
1712
  end
1574
1713
 
1714
+ class GoogleAnalyticsAdminV1alphaListAccessBindingsResponse
1715
+ # @private
1716
+ class Representation < Google::Apis::Core::JsonRepresentation
1717
+ collection :access_bindings, as: 'accessBindings', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaAccessBinding, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaAccessBinding::Representation
1718
+
1719
+ property :next_page_token, as: 'nextPageToken'
1720
+ end
1721
+ end
1722
+
1575
1723
  class GoogleAnalyticsAdminV1alphaListAccountSummariesResponse
1576
1724
  # @private
1577
1725
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1865,6 +2013,14 @@ module Google
1865
2013
  end
1866
2014
  end
1867
2015
 
2016
+ class GoogleAnalyticsAdminV1alphaUpdateAccessBindingRequest
2017
+ # @private
2018
+ class Representation < Google::Apis::Core::JsonRepresentation
2019
+ property :access_binding, as: 'accessBinding', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaAccessBinding, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaAccessBinding::Representation
2020
+
2021
+ end
2022
+ end
2023
+
1868
2024
  class GoogleAnalyticsAdminV1alphaUpdateUserLinkRequest
1869
2025
  # @private
1870
2026
  class Representation < Google::Apis::Core::JsonRepresentation