google-analytics-admin-v1alpha 0.7.0 → 0.9.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.
@@ -21,7 +21,7 @@ module Google
21
21
  module Analytics
22
22
  module Admin
23
23
  module V1alpha
24
- VERSION = "0.7.0"
24
+ VERSION = "0.9.0"
25
25
  end
26
26
  end
27
27
  end
@@ -702,20 +702,6 @@ module Google
702
702
  extend ::Google::Protobuf::MessageExts::ClassMethods
703
703
  end
704
704
 
705
- # Request message for UpdateFirebaseLink RPC
706
- # @!attribute [rw] firebase_link
707
- # @return [::Google::Analytics::Admin::V1alpha::FirebaseLink]
708
- # Required. The Firebase link to update.
709
- # @!attribute [rw] update_mask
710
- # @return [::Google::Protobuf::FieldMask]
711
- # Required. The list of fields to be updated. Field names must be in snake case
712
- # (e.g., "field_to_update"). Omitted fields will not be updated. To replace
713
- # the entire entity, use one path with the string "*" to match all fields.
714
- class UpdateFirebaseLinkRequest
715
- include ::Google::Protobuf::MessageExts
716
- extend ::Google::Protobuf::MessageExts::ClassMethods
717
- end
718
-
719
705
  # Request message for DeleteFirebaseLink RPC
720
706
  # @!attribute [rw] name
721
707
  # @return [::String]
@@ -940,6 +926,556 @@ module Google
940
926
  include ::Google::Protobuf::MessageExts
941
927
  extend ::Google::Protobuf::MessageExts::ClassMethods
942
928
  end
929
+
930
+ # Request message for GetMeasurementProtocolSecret RPC.
931
+ # @!attribute [rw] name
932
+ # @return [::String]
933
+ # Required. The name of the measurement protocol secret to lookup.
934
+ # Format:
935
+ # properties/\\{property}/webDataStreams/\\{webDataStream}/measurementProtocolSecrets/\\{measurementProtocolSecret}
936
+ # Note: Any type of stream (WebDataStream, IosAppDataStream,
937
+ # AndroidAppDataStream) may be a parent.
938
+ class GetMeasurementProtocolSecretRequest
939
+ include ::Google::Protobuf::MessageExts
940
+ extend ::Google::Protobuf::MessageExts::ClassMethods
941
+ end
942
+
943
+ # Request message for CreateMeasurementProtocolSecret RPC
944
+ # @!attribute [rw] parent
945
+ # @return [::String]
946
+ # Required. The parent resource where this secret will be created.
947
+ # Any type of stream (WebDataStream, IosAppDataStream, AndroidAppDataStream)
948
+ # may be a parent.
949
+ # Format: properties/\\{property}/webDataStreams/\\{webDataStream}
950
+ # @!attribute [rw] measurement_protocol_secret
951
+ # @return [::Google::Analytics::Admin::V1alpha::MeasurementProtocolSecret]
952
+ # Required. The measurement protocol secret to create.
953
+ class CreateMeasurementProtocolSecretRequest
954
+ include ::Google::Protobuf::MessageExts
955
+ extend ::Google::Protobuf::MessageExts::ClassMethods
956
+ end
957
+
958
+ # Request message for DeleteMeasurementProtocolSecret RPC
959
+ # @!attribute [rw] name
960
+ # @return [::String]
961
+ # Required. The name of the MeasurementProtocolSecret to delete.
962
+ # Format:
963
+ # properties/\\{property}/webDataStreams/\\{webDataStream}/measurementProtocolSecrets/\\{measurementProtocolSecret}
964
+ # Note: Any type of stream (WebDataStream, IosAppDataStream,
965
+ # AndroidAppDataStream) may be a parent.
966
+ class DeleteMeasurementProtocolSecretRequest
967
+ include ::Google::Protobuf::MessageExts
968
+ extend ::Google::Protobuf::MessageExts::ClassMethods
969
+ end
970
+
971
+ # Request message for UpdateMeasurementProtocolSecret RPC
972
+ # @!attribute [rw] measurement_protocol_secret
973
+ # @return [::Google::Analytics::Admin::V1alpha::MeasurementProtocolSecret]
974
+ # Required. The measurement protocol secret to update.
975
+ # @!attribute [rw] update_mask
976
+ # @return [::Google::Protobuf::FieldMask]
977
+ # The list of fields to be updated. Omitted fields will not be updated.
978
+ class UpdateMeasurementProtocolSecretRequest
979
+ include ::Google::Protobuf::MessageExts
980
+ extend ::Google::Protobuf::MessageExts::ClassMethods
981
+ end
982
+
983
+ # Request message for ListMeasurementProtocolSecret RPC
984
+ # @!attribute [rw] parent
985
+ # @return [::String]
986
+ # Required. The resource name of the parent stream.
987
+ # Any type of stream (WebDataStream, IosAppDataStream, AndroidAppDataStream)
988
+ # may be a parent.
989
+ # Format:
990
+ # properties/\\{property}/webDataStreams/\\{webDataStream}/measurementProtocolSecrets
991
+ # @!attribute [rw] page_size
992
+ # @return [::Integer]
993
+ # The maximum number of resources to return.
994
+ # If unspecified, at most 10 resources will be returned.
995
+ # The maximum value is 10. Higher values will be coerced to the maximum.
996
+ # @!attribute [rw] page_token
997
+ # @return [::String]
998
+ # A page token, received from a previous `ListMeasurementProtocolSecrets`
999
+ # call. Provide this to retrieve the subsequent page. When paginating, all
1000
+ # other parameters provided to `ListMeasurementProtocolSecrets` must match
1001
+ # the call that provided the page token.
1002
+ class ListMeasurementProtocolSecretsRequest
1003
+ include ::Google::Protobuf::MessageExts
1004
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1005
+ end
1006
+
1007
+ # Response message for ListMeasurementProtocolSecret RPC
1008
+ # @!attribute [rw] measurement_protocol_secrets
1009
+ # @return [::Array<::Google::Analytics::Admin::V1alpha::MeasurementProtocolSecret>]
1010
+ # A list of secrets for the parent stream specified in the request.
1011
+ # @!attribute [rw] next_page_token
1012
+ # @return [::String]
1013
+ # A token, which can be sent as `page_token` to retrieve the next page.
1014
+ # If this field is omitted, there are no subsequent pages.
1015
+ class ListMeasurementProtocolSecretsResponse
1016
+ include ::Google::Protobuf::MessageExts
1017
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1018
+ end
1019
+
1020
+ # Request message for GetGoogleSignalsSettings RPC
1021
+ # @!attribute [rw] name
1022
+ # @return [::String]
1023
+ # Required. The name of the google signals settings to retrieve.
1024
+ # Format: properties/\\{property}/googleSignalsSettings
1025
+ class GetGoogleSignalsSettingsRequest
1026
+ include ::Google::Protobuf::MessageExts
1027
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1028
+ end
1029
+
1030
+ # Request message for UpdateGoogleSignalsSettings RPC
1031
+ # @!attribute [rw] google_signals_settings
1032
+ # @return [::Google::Analytics::Admin::V1alpha::GoogleSignalsSettings]
1033
+ # Required. The settings to update.
1034
+ # The `name` field is used to identify the settings to be updated.
1035
+ # @!attribute [rw] update_mask
1036
+ # @return [::Google::Protobuf::FieldMask]
1037
+ # Required. The list of fields to be updated. Field names must be in snake case
1038
+ # (e.g., "field_to_update"). Omitted fields will not be updated. To replace
1039
+ # the entire entity, use one path with the string "*" to match all fields.
1040
+ class UpdateGoogleSignalsSettingsRequest
1041
+ include ::Google::Protobuf::MessageExts
1042
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1043
+ end
1044
+
1045
+ # Request message for CreateConversionEvent RPC
1046
+ # @!attribute [rw] conversion_event
1047
+ # @return [::Google::Analytics::Admin::V1alpha::ConversionEvent]
1048
+ # Required. The conversion event to create.
1049
+ # @!attribute [rw] parent
1050
+ # @return [::String]
1051
+ # Required. The resource name of the parent property where this conversion event will
1052
+ # be created. Format: properties/123
1053
+ class CreateConversionEventRequest
1054
+ include ::Google::Protobuf::MessageExts
1055
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1056
+ end
1057
+
1058
+ # Request message for GetConversionEvent RPC
1059
+ # @!attribute [rw] name
1060
+ # @return [::String]
1061
+ # Required. The resource name of the conversion event to retrieve.
1062
+ # Format: properties/\\{property}/conversionEvents/\\{conversion_event}
1063
+ # Example: "properties/123/conversionEvents/456"
1064
+ class GetConversionEventRequest
1065
+ include ::Google::Protobuf::MessageExts
1066
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1067
+ end
1068
+
1069
+ # Request message for DeleteConversionEvent RPC
1070
+ # @!attribute [rw] name
1071
+ # @return [::String]
1072
+ # Required. The resource name of the conversion event to delete.
1073
+ # Format: properties/\\{property}/conversionEvents/\\{conversion_event}
1074
+ # Example: "properties/123/conversionEvents/456"
1075
+ class DeleteConversionEventRequest
1076
+ include ::Google::Protobuf::MessageExts
1077
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1078
+ end
1079
+
1080
+ # Request message for ListConversionEvents RPC
1081
+ # @!attribute [rw] parent
1082
+ # @return [::String]
1083
+ # Required. The resource name of the parent property.
1084
+ # Example: 'properties/123'
1085
+ # @!attribute [rw] page_size
1086
+ # @return [::Integer]
1087
+ # The maximum number of resources to return.
1088
+ # If unspecified, at most 50 resources will be returned.
1089
+ # The maximum value is 200; (higher values will be coerced to the maximum)
1090
+ # @!attribute [rw] page_token
1091
+ # @return [::String]
1092
+ # A page token, received from a previous `ListConversionEvents` call.
1093
+ # Provide this to retrieve the subsequent page.
1094
+ # When paginating, all other parameters provided to `ListConversionEvents`
1095
+ # must match the call that provided the page token.
1096
+ class ListConversionEventsRequest
1097
+ include ::Google::Protobuf::MessageExts
1098
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1099
+ end
1100
+
1101
+ # Response message for ListConversionEvents RPC.
1102
+ # @!attribute [rw] conversion_events
1103
+ # @return [::Array<::Google::Analytics::Admin::V1alpha::ConversionEvent>]
1104
+ # The requested conversion events
1105
+ # @!attribute [rw] next_page_token
1106
+ # @return [::String]
1107
+ # A token, which can be sent as `page_token` to retrieve the next page.
1108
+ # If this field is omitted, there are no subsequent pages.
1109
+ class ListConversionEventsResponse
1110
+ include ::Google::Protobuf::MessageExts
1111
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1112
+ end
1113
+
1114
+ # Request message for GetDisplayVideo360AdvertiserLink RPC.
1115
+ # @!attribute [rw] name
1116
+ # @return [::String]
1117
+ # Required. The name of the DisplayVideo360AdvertiserLink to get.
1118
+ # Example format: properties/1234/displayVideo360AdvertiserLink/5678
1119
+ class GetDisplayVideo360AdvertiserLinkRequest
1120
+ include ::Google::Protobuf::MessageExts
1121
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1122
+ end
1123
+
1124
+ # Request message for ListDisplayVideo360AdvertiserLinks RPC.
1125
+ # @!attribute [rw] parent
1126
+ # @return [::String]
1127
+ # Required. Example format: properties/1234
1128
+ # @!attribute [rw] page_size
1129
+ # @return [::Integer]
1130
+ # The maximum number of resources to return.
1131
+ # If unspecified, at most 50 resources will be returned.
1132
+ # The maximum value is 200 (higher values will be coerced to the maximum).
1133
+ # @!attribute [rw] page_token
1134
+ # @return [::String]
1135
+ # A page token, received from a previous `ListDisplayVideo360AdvertiserLinks`
1136
+ # call. Provide this to retrieve the subsequent page.
1137
+ #
1138
+ # When paginating, all other parameters provided to
1139
+ # `ListDisplayVideo360AdvertiserLinks` must match the call that provided the
1140
+ # page token.
1141
+ class ListDisplayVideo360AdvertiserLinksRequest
1142
+ include ::Google::Protobuf::MessageExts
1143
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1144
+ end
1145
+
1146
+ # Response message for ListDisplayVideo360AdvertiserLinks RPC.
1147
+ # @!attribute [rw] display_video_360_advertiser_links
1148
+ # @return [::Array<::Google::Analytics::Admin::V1alpha::DisplayVideo360AdvertiserLink>]
1149
+ # List of DisplayVideo360AdvertiserLinks.
1150
+ # @!attribute [rw] next_page_token
1151
+ # @return [::String]
1152
+ # A token, which can be sent as `page_token` to retrieve the next page.
1153
+ # If this field is omitted, there are no subsequent pages.
1154
+ class ListDisplayVideo360AdvertiserLinksResponse
1155
+ include ::Google::Protobuf::MessageExts
1156
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1157
+ end
1158
+
1159
+ # Request message for CreateDisplayVideo360AdvertiserLink RPC.
1160
+ # @!attribute [rw] parent
1161
+ # @return [::String]
1162
+ # Required. Example format: properties/1234
1163
+ # @!attribute [rw] display_video_360_advertiser_link
1164
+ # @return [::Google::Analytics::Admin::V1alpha::DisplayVideo360AdvertiserLink]
1165
+ # Required. The DisplayVideo360AdvertiserLink to create.
1166
+ class CreateDisplayVideo360AdvertiserLinkRequest
1167
+ include ::Google::Protobuf::MessageExts
1168
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1169
+ end
1170
+
1171
+ # Request message for DeleteDisplayVideo360AdvertiserLink RPC.
1172
+ # @!attribute [rw] name
1173
+ # @return [::String]
1174
+ # Required. The name of the DisplayVideo360AdvertiserLink to delete.
1175
+ # Example format: properties/1234/displayVideo360AdvertiserLinks/5678
1176
+ class DeleteDisplayVideo360AdvertiserLinkRequest
1177
+ include ::Google::Protobuf::MessageExts
1178
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1179
+ end
1180
+
1181
+ # Request message for UpdateDisplayVideo360AdvertiserLink RPC.
1182
+ # @!attribute [rw] display_video_360_advertiser_link
1183
+ # @return [::Google::Analytics::Admin::V1alpha::DisplayVideo360AdvertiserLink]
1184
+ # The DisplayVideo360AdvertiserLink to update
1185
+ # @!attribute [rw] update_mask
1186
+ # @return [::Google::Protobuf::FieldMask]
1187
+ # Required. The list of fields to be updated. Omitted fields will not be updated.
1188
+ # To replace the entire entity, use one path with the string "*" to match
1189
+ # all fields.
1190
+ class UpdateDisplayVideo360AdvertiserLinkRequest
1191
+ include ::Google::Protobuf::MessageExts
1192
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1193
+ end
1194
+
1195
+ # Request message for GetDisplayVideo360AdvertiserLinkProposal RPC.
1196
+ # @!attribute [rw] name
1197
+ # @return [::String]
1198
+ # Required. The name of the DisplayVideo360AdvertiserLinkProposal to get.
1199
+ # Example format: properties/1234/displayVideo360AdvertiserLinkProposals/5678
1200
+ class GetDisplayVideo360AdvertiserLinkProposalRequest
1201
+ include ::Google::Protobuf::MessageExts
1202
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1203
+ end
1204
+
1205
+ # Request message for ListDisplayVideo360AdvertiserLinkProposals RPC.
1206
+ # @!attribute [rw] parent
1207
+ # @return [::String]
1208
+ # Required. Example format: properties/1234
1209
+ # @!attribute [rw] page_size
1210
+ # @return [::Integer]
1211
+ # The maximum number of resources to return.
1212
+ # If unspecified, at most 50 resources will be returned.
1213
+ # The maximum value is 200 (higher values will be coerced to the maximum).
1214
+ # @!attribute [rw] page_token
1215
+ # @return [::String]
1216
+ # A page token, received from a previous
1217
+ # `ListDisplayVideo360AdvertiserLinkProposals` call. Provide this to retrieve
1218
+ # the subsequent page.
1219
+ #
1220
+ # When paginating, all other parameters provided to
1221
+ # `ListDisplayVideo360AdvertiserLinkProposals` must match the call that
1222
+ # provided the page token.
1223
+ class ListDisplayVideo360AdvertiserLinkProposalsRequest
1224
+ include ::Google::Protobuf::MessageExts
1225
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1226
+ end
1227
+
1228
+ # Response message for ListDisplayVideo360AdvertiserLinkProposals RPC.
1229
+ # @!attribute [rw] display_video_360_advertiser_link_proposals
1230
+ # @return [::Array<::Google::Analytics::Admin::V1alpha::DisplayVideo360AdvertiserLinkProposal>]
1231
+ # List of DisplayVideo360AdvertiserLinkProposals.
1232
+ # @!attribute [rw] next_page_token
1233
+ # @return [::String]
1234
+ # A token, which can be sent as `page_token` to retrieve the next page.
1235
+ # If this field is omitted, there are no subsequent pages.
1236
+ class ListDisplayVideo360AdvertiserLinkProposalsResponse
1237
+ include ::Google::Protobuf::MessageExts
1238
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1239
+ end
1240
+
1241
+ # Request message for CreateDisplayVideo360AdvertiserLinkProposal RPC.
1242
+ # @!attribute [rw] parent
1243
+ # @return [::String]
1244
+ # Required. Example format: properties/1234
1245
+ # @!attribute [rw] display_video_360_advertiser_link_proposal
1246
+ # @return [::Google::Analytics::Admin::V1alpha::DisplayVideo360AdvertiserLinkProposal]
1247
+ # Required. The DisplayVideo360AdvertiserLinkProposal to create.
1248
+ class CreateDisplayVideo360AdvertiserLinkProposalRequest
1249
+ include ::Google::Protobuf::MessageExts
1250
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1251
+ end
1252
+
1253
+ # Request message for DeleteDisplayVideo360AdvertiserLinkProposal RPC.
1254
+ # @!attribute [rw] name
1255
+ # @return [::String]
1256
+ # Required. The name of the DisplayVideo360AdvertiserLinkProposal to delete.
1257
+ # Example format: properties/1234/displayVideo360AdvertiserLinkProposals/5678
1258
+ class DeleteDisplayVideo360AdvertiserLinkProposalRequest
1259
+ include ::Google::Protobuf::MessageExts
1260
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1261
+ end
1262
+
1263
+ # Request message for ApproveDisplayVideo360AdvertiserLinkProposal RPC.
1264
+ # @!attribute [rw] name
1265
+ # @return [::String]
1266
+ # Required. The name of the DisplayVideo360AdvertiserLinkProposal to approve.
1267
+ # Example format: properties/1234/displayVideo360AdvertiserLinkProposals/5678
1268
+ class ApproveDisplayVideo360AdvertiserLinkProposalRequest
1269
+ include ::Google::Protobuf::MessageExts
1270
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1271
+ end
1272
+
1273
+ # Response message for ApproveDisplayVideo360AdvertiserLinkProposal RPC.
1274
+ # @!attribute [rw] display_video_360_advertiser_link
1275
+ # @return [::Google::Analytics::Admin::V1alpha::DisplayVideo360AdvertiserLink]
1276
+ # The DisplayVideo360AdvertiserLink created as a result of approving the
1277
+ # proposal.
1278
+ class ApproveDisplayVideo360AdvertiserLinkProposalResponse
1279
+ include ::Google::Protobuf::MessageExts
1280
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1281
+ end
1282
+
1283
+ # Request message for CancelDisplayVideo360AdvertiserLinkProposal RPC.
1284
+ # @!attribute [rw] name
1285
+ # @return [::String]
1286
+ # Required. The name of the DisplayVideo360AdvertiserLinkProposal to cancel.
1287
+ # Example format: properties/1234/displayVideo360AdvertiserLinkProposals/5678
1288
+ class CancelDisplayVideo360AdvertiserLinkProposalRequest
1289
+ include ::Google::Protobuf::MessageExts
1290
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1291
+ end
1292
+
1293
+ # Request message for CreateCustomDimension RPC.
1294
+ # @!attribute [rw] parent
1295
+ # @return [::String]
1296
+ # Required. Example format: properties/1234
1297
+ # @!attribute [rw] custom_dimension
1298
+ # @return [::Google::Analytics::Admin::V1alpha::CustomDimension]
1299
+ # Required. The CustomDimension to create.
1300
+ class CreateCustomDimensionRequest
1301
+ include ::Google::Protobuf::MessageExts
1302
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1303
+ end
1304
+
1305
+ # Request message for UpdateCustomDimension RPC.
1306
+ # @!attribute [rw] custom_dimension
1307
+ # @return [::Google::Analytics::Admin::V1alpha::CustomDimension]
1308
+ # The CustomDimension to update
1309
+ # @!attribute [rw] update_mask
1310
+ # @return [::Google::Protobuf::FieldMask]
1311
+ # Required. The list of fields to be updated. Omitted fields will not be updated.
1312
+ # To replace the entire entity, use one path with the string "*" to match
1313
+ # all fields.
1314
+ class UpdateCustomDimensionRequest
1315
+ include ::Google::Protobuf::MessageExts
1316
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1317
+ end
1318
+
1319
+ # Request message for ListCustomDimensions RPC.
1320
+ # @!attribute [rw] parent
1321
+ # @return [::String]
1322
+ # Required. Example format: properties/1234
1323
+ # @!attribute [rw] page_size
1324
+ # @return [::Integer]
1325
+ # The maximum number of resources to return.
1326
+ # If unspecified, at most 50 resources will be returned.
1327
+ # The maximum value is 200 (higher values will be coerced to the maximum).
1328
+ # @!attribute [rw] page_token
1329
+ # @return [::String]
1330
+ # A page token, received from a previous `ListCustomDimensions` call.
1331
+ # Provide this to retrieve the subsequent page.
1332
+ #
1333
+ # When paginating, all other parameters provided to `ListCustomDimensions`
1334
+ # must match the call that provided the page token.
1335
+ class ListCustomDimensionsRequest
1336
+ include ::Google::Protobuf::MessageExts
1337
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1338
+ end
1339
+
1340
+ # Response message for ListCustomDimensions RPC.
1341
+ # @!attribute [rw] custom_dimensions
1342
+ # @return [::Array<::Google::Analytics::Admin::V1alpha::CustomDimension>]
1343
+ # List of CustomDimensions.
1344
+ # @!attribute [rw] next_page_token
1345
+ # @return [::String]
1346
+ # A token, which can be sent as `page_token` to retrieve the next page.
1347
+ # If this field is omitted, there are no subsequent pages.
1348
+ class ListCustomDimensionsResponse
1349
+ include ::Google::Protobuf::MessageExts
1350
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1351
+ end
1352
+
1353
+ # Request message for ArchiveCustomDimension RPC.
1354
+ # @!attribute [rw] name
1355
+ # @return [::String]
1356
+ # Required. The name of the CustomDimension to archive.
1357
+ # Example format: properties/1234/customDimensions/5678
1358
+ class ArchiveCustomDimensionRequest
1359
+ include ::Google::Protobuf::MessageExts
1360
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1361
+ end
1362
+
1363
+ # Request message for GetCustomDimension RPC.
1364
+ # @!attribute [rw] name
1365
+ # @return [::String]
1366
+ # Required. The name of the CustomDimension to get.
1367
+ # Example format: properties/1234/customDimensions/5678
1368
+ class GetCustomDimensionRequest
1369
+ include ::Google::Protobuf::MessageExts
1370
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1371
+ end
1372
+
1373
+ # Request message for CreateCustomMetric RPC.
1374
+ # @!attribute [rw] parent
1375
+ # @return [::String]
1376
+ # Required. Example format: properties/1234
1377
+ # @!attribute [rw] custom_metric
1378
+ # @return [::Google::Analytics::Admin::V1alpha::CustomMetric]
1379
+ # Required. The CustomMetric to create.
1380
+ class CreateCustomMetricRequest
1381
+ include ::Google::Protobuf::MessageExts
1382
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1383
+ end
1384
+
1385
+ # Request message for UpdateCustomMetric RPC.
1386
+ # @!attribute [rw] custom_metric
1387
+ # @return [::Google::Analytics::Admin::V1alpha::CustomMetric]
1388
+ # The CustomMetric to update
1389
+ # @!attribute [rw] update_mask
1390
+ # @return [::Google::Protobuf::FieldMask]
1391
+ # Required. The list of fields to be updated. Omitted fields will not be updated.
1392
+ # To replace the entire entity, use one path with the string "*" to match
1393
+ # all fields.
1394
+ class UpdateCustomMetricRequest
1395
+ include ::Google::Protobuf::MessageExts
1396
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1397
+ end
1398
+
1399
+ # Request message for ListCustomMetrics RPC.
1400
+ # @!attribute [rw] parent
1401
+ # @return [::String]
1402
+ # Required. Example format: properties/1234
1403
+ # @!attribute [rw] page_size
1404
+ # @return [::Integer]
1405
+ # The maximum number of resources to return.
1406
+ # If unspecified, at most 50 resources will be returned.
1407
+ # The maximum value is 200 (higher values will be coerced to the maximum).
1408
+ # @!attribute [rw] page_token
1409
+ # @return [::String]
1410
+ # A page token, received from a previous `ListCustomMetrics` call.
1411
+ # Provide this to retrieve the subsequent page.
1412
+ #
1413
+ # When paginating, all other parameters provided to `ListCustomMetrics` must
1414
+ # match the call that provided the page token.
1415
+ class ListCustomMetricsRequest
1416
+ include ::Google::Protobuf::MessageExts
1417
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1418
+ end
1419
+
1420
+ # Response message for ListCustomMetrics RPC.
1421
+ # @!attribute [rw] custom_metrics
1422
+ # @return [::Array<::Google::Analytics::Admin::V1alpha::CustomMetric>]
1423
+ # List of CustomMetrics.
1424
+ # @!attribute [rw] next_page_token
1425
+ # @return [::String]
1426
+ # A token, which can be sent as `page_token` to retrieve the next page.
1427
+ # If this field is omitted, there are no subsequent pages.
1428
+ class ListCustomMetricsResponse
1429
+ include ::Google::Protobuf::MessageExts
1430
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1431
+ end
1432
+
1433
+ # Request message for ArchiveCustomMetric RPC.
1434
+ # @!attribute [rw] name
1435
+ # @return [::String]
1436
+ # Required. The name of the CustomMetric to archive.
1437
+ # Example format: properties/1234/customMetrics/5678
1438
+ class ArchiveCustomMetricRequest
1439
+ include ::Google::Protobuf::MessageExts
1440
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1441
+ end
1442
+
1443
+ # Request message for GetCustomMetric RPC.
1444
+ # @!attribute [rw] name
1445
+ # @return [::String]
1446
+ # Required. The name of the CustomMetric to get.
1447
+ # Example format: properties/1234/customMetrics/5678
1448
+ class GetCustomMetricRequest
1449
+ include ::Google::Protobuf::MessageExts
1450
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1451
+ end
1452
+
1453
+ # Request message for GetDataRetentionSettings RPC.
1454
+ # @!attribute [rw] name
1455
+ # @return [::String]
1456
+ # Required. The name of the settings to lookup.
1457
+ # Format:
1458
+ # properties/\\{property}/dataRetentionSettings
1459
+ # Example: "properties/1000/dataRetentionSettings"
1460
+ class GetDataRetentionSettingsRequest
1461
+ include ::Google::Protobuf::MessageExts
1462
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1463
+ end
1464
+
1465
+ # Request message for UpdateDataRetentionSettings RPC.
1466
+ # @!attribute [rw] data_retention_settings
1467
+ # @return [::Google::Analytics::Admin::V1alpha::DataRetentionSettings]
1468
+ # Required. The settings to update.
1469
+ # The `name` field is used to identify the settings to be updated.
1470
+ # @!attribute [rw] update_mask
1471
+ # @return [::Google::Protobuf::FieldMask]
1472
+ # Required. The list of fields to be updated. Field names must be in snake case
1473
+ # (e.g., "field_to_update"). Omitted fields will not be updated. To replace
1474
+ # the entire entity, use one path with the string "*" to match all fields.
1475
+ class UpdateDataRetentionSettingsRequest
1476
+ include ::Google::Protobuf::MessageExts
1477
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1478
+ end
943
1479
  end
944
1480
  end
945
1481
  end