Show / Hide Table of Contents

Class BatchCreateUserLinksRequest

Request message for BatchCreateUserLinks RPC.

Inheritance
System.Object
BatchCreateUserLinksRequest
Implements
Google.Protobuf.IMessage<BatchCreateUserLinksRequest>
System.IEquatable<BatchCreateUserLinksRequest>
Google.Protobuf.IDeepCloneable<BatchCreateUserLinksRequest>
Google.Protobuf.IBufferMessage
Google.Protobuf.IMessage
Inherited Members
System.Object.ToString()
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Google.Analytics.Admin.V1Alpha
Assembly: Google.Analytics.Admin.V1Alpha.dll
Syntax
public sealed class BatchCreateUserLinksRequest : IMessage<BatchCreateUserLinksRequest>, IEquatable<BatchCreateUserLinksRequest>, IDeepCloneable<BatchCreateUserLinksRequest>, IBufferMessage, IMessage

Constructors

BatchCreateUserLinksRequest()

Declaration
public BatchCreateUserLinksRequest()

BatchCreateUserLinksRequest(BatchCreateUserLinksRequest)

Declaration
public BatchCreateUserLinksRequest(BatchCreateUserLinksRequest other)
Parameters
Type Name Description
BatchCreateUserLinksRequest other

Properties

NotifyNewUsers

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.

Declaration
public bool NotifyNewUsers { get; set; }
Property Value
Type Description
System.Boolean

Parent

Required. The account or property that all user links in the request are for. This field is required. The parent field in the CreateUserLinkRequest messages must either be empty or match this field. Example format: accounts/1234

Declaration
public string Parent { get; set; }
Property Value
Type Description
System.String

ParentAsAccountName

AccountName-typed view over the Parent resource name property.

Declaration
public AccountName ParentAsAccountName { get; set; }
Property Value
Type Description
AccountName

ParentAsPropertyName

PropertyName-typed view over the Parent resource name property.

Declaration
public PropertyName ParentAsPropertyName { get; set; }
Property Value
Type Description
PropertyName

ParentAsResourceName

Google.Api.Gax.IResourceName-typed view over the Parent resource name property.

Declaration
public IResourceName ParentAsResourceName { get; set; }
Property Value
Type Description
Google.Api.Gax.IResourceName

Requests

Required. The requests specifying the user links to create. A maximum of 1000 user links can be created in a batch.

Declaration
public RepeatedField<CreateUserLinkRequest> Requests { get; }
Property Value
Type Description
Google.Protobuf.Collections.RepeatedField<CreateUserLinkRequest>
Back to top