Show / Hide Table of Contents

Class ListMeasurementProtocolSecretsRequest

Request message for ListMeasurementProtocolSecret RPC

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

Constructors

ListMeasurementProtocolSecretsRequest()

Declaration
public ListMeasurementProtocolSecretsRequest()

ListMeasurementProtocolSecretsRequest(ListMeasurementProtocolSecretsRequest)

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

Properties

PageSize

The maximum number of resources to return. If unspecified, at most 10 resources will be returned. The maximum value is 10. Higher values will be coerced to the maximum.

Declaration
public int PageSize { get; set; }
Property Value
Type Description
System.Int32
Implements
Google.Api.Gax.Grpc.IPageRequest.PageSize

PageToken

A page token, received from a previous ListMeasurementProtocolSecrets call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to ListMeasurementProtocolSecrets must match the call that provided the page token.

Declaration
public string PageToken { get; set; }
Property Value
Type Description
System.String
Implements
Google.Api.Gax.Grpc.IPageRequest.PageToken

Parent

Required. The resource name of the parent stream. Any type of stream (WebDataStream, IosAppDataStream, AndroidAppDataStream) may be a parent. Format: properties/{property}/webDataStreams/{webDataStream}/measurementProtocolSecrets

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

ParentAsWebDataStreamName

WebDataStreamName-typed view over the Parent resource name property.

Declaration
public WebDataStreamName ParentAsWebDataStreamName { get; set; }
Property Value
Type Description
WebDataStreamName
In This Article
Back to top