|
|
|
@ -841,8 +841,8 @@ message CreateUserLinkRequest { |
|
|
|
|
} |
|
|
|
|
]; |
|
|
|
|
|
|
|
|
|
// Optional. If notify_new_user is set, then email new user that they've been given |
|
|
|
|
// permissions on the resource. |
|
|
|
|
// Optional. If set, then email the new user notifying them that they've been granted |
|
|
|
|
// permissions to the resource. |
|
|
|
|
bool notify_new_user = 2 [(google.api.field_behavior) = OPTIONAL]; |
|
|
|
|
|
|
|
|
|
// Required. The user link to create. |
|
|
|
@ -855,15 +855,21 @@ message BatchCreateUserLinksRequest { |
|
|
|
|
// This field is required. The parent field in the CreateUserLinkRequest |
|
|
|
|
// messages must either be empty or match this field. |
|
|
|
|
// Example format: accounts/1234 |
|
|
|
|
string parent = 1 [(google.api.field_behavior) = REQUIRED]; |
|
|
|
|
string parent = 1 [ |
|
|
|
|
(google.api.field_behavior) = REQUIRED, |
|
|
|
|
(google.api.resource_reference) = { |
|
|
|
|
child_type: "analyticsadmin.googleapis.com/UserLink" |
|
|
|
|
} |
|
|
|
|
]; |
|
|
|
|
|
|
|
|
|
// Optional. If notify_new_users is set, then email new users that they've been given |
|
|
|
|
// permissions on the resource. |
|
|
|
|
// Optional. If set, then email the new users notifying them that they've been granted |
|
|
|
|
// permissions to the resource. Regardless of whether this is set or not, |
|
|
|
|
// notify_new_user field inside each individual request is ignored. |
|
|
|
|
bool notify_new_users = 2 [(google.api.field_behavior) = OPTIONAL]; |
|
|
|
|
|
|
|
|
|
// The requests specifying the user links to create. |
|
|
|
|
// Required. The requests specifying the user links to create. |
|
|
|
|
// A maximum of 1000 user links can be created in a batch. |
|
|
|
|
repeated CreateUserLinkRequest requests = 3; |
|
|
|
|
repeated CreateUserLinkRequest requests = 3 [(google.api.field_behavior) = REQUIRED]; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// Response message for BatchCreateUserLinks RPC. |
|
|
|
@ -884,11 +890,16 @@ message BatchUpdateUserLinksRequest { |
|
|
|
|
// for. The parent field in the UpdateUserLinkRequest messages must either be |
|
|
|
|
// empty or match this field. |
|
|
|
|
// Example format: accounts/1234 |
|
|
|
|
string parent = 1 [(google.api.field_behavior) = REQUIRED]; |
|
|
|
|
string parent = 1 [ |
|
|
|
|
(google.api.field_behavior) = REQUIRED, |
|
|
|
|
(google.api.resource_reference) = { |
|
|
|
|
child_type: "analyticsadmin.googleapis.com/UserLink" |
|
|
|
|
} |
|
|
|
|
]; |
|
|
|
|
|
|
|
|
|
// The requests specifying the user links to update. |
|
|
|
|
// Required. The requests specifying the user links to update. |
|
|
|
|
// A maximum of 1000 user links can be updated in a batch. |
|
|
|
|
repeated UpdateUserLinkRequest requests = 2; |
|
|
|
|
repeated UpdateUserLinkRequest requests = 2 [(google.api.field_behavior) = REQUIRED]; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// Response message for BatchUpdateUserLinks RPC. |
|
|
|
@ -914,11 +925,16 @@ message BatchDeleteUserLinksRequest { |
|
|
|
|
// for. The parent of all values for user link names to delete must match this |
|
|
|
|
// field. |
|
|
|
|
// Example format: accounts/1234 |
|
|
|
|
string parent = 1 [(google.api.field_behavior) = REQUIRED]; |
|
|
|
|
string parent = 1 [ |
|
|
|
|
(google.api.field_behavior) = REQUIRED, |
|
|
|
|
(google.api.resource_reference) = { |
|
|
|
|
child_type: "analyticsadmin.googleapis.com/UserLink" |
|
|
|
|
} |
|
|
|
|
]; |
|
|
|
|
|
|
|
|
|
// The requests specifying the user links to update. |
|
|
|
|
// Required. The requests specifying the user links to update. |
|
|
|
|
// A maximum of 1000 user links can be updated in a batch. |
|
|
|
|
repeated DeleteUserLinkRequest requests = 2; |
|
|
|
|
repeated DeleteUserLinkRequest requests = 2 [(google.api.field_behavior) = REQUIRED]; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// Request message for GetWebDataStream RPC. |
|
|
|
@ -1182,6 +1198,7 @@ message ListAndroidAppDataStreamsResponse { |
|
|
|
|
message GetEnhancedMeasurementSettingsRequest { |
|
|
|
|
// Required. The name of the settings to lookup. |
|
|
|
|
// Format: |
|
|
|
|
// |
|
|
|
|
// properties/{property_id}/webDataStreams/{stream_id}/enhancedMeasurementSettings |
|
|
|
|
// Example: "properties/1000/webDataStreams/2000/enhancedMeasurementSettings" |
|
|
|
|
string name = 1 [ |
|
|
|
|