Class ProjectsResource.LocationsResource.SessionsResource.SparkApplicationsResource.SearchStageAttemptsRequest
Obtain data corresponding to a spark stage attempts for a Spark Application.
Inheritance
Implements
Inherited Members
Namespace: Google.Apis.Dataproc.v1
Assembly: Google.Apis.Dataproc.v1.dll
Syntax
public class ProjectsResource.LocationsResource.SessionsResource.SparkApplicationsResource.SearchStageAttemptsRequest : DataprocBaseServiceRequest<SearchSessionSparkApplicationStageAttemptsResponse>, IClientServiceRequest<SearchSessionSparkApplicationStageAttemptsResponse>, IClientServiceRequest
Constructors
SearchStageAttemptsRequest(IClientService, string)
Constructs a new SearchStageAttempts request.
Declaration
public SearchStageAttemptsRequest(IClientService service, string name)
Parameters
Type | Name | Description |
---|---|---|
IClientService | service | |
string | name |
Properties
HttpMethod
Gets the HTTP method.
Declaration
public override string HttpMethod { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
MethodName
Gets the method name.
Declaration
public override string MethodName { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
Name
Required. The fully qualified name of the session to retrieve in the format "projects/PROJECT_ID/locations/DATAPROC_REGION/sessions/SESSION_ID/sparkApplications/APPLICATION_ID"
Declaration
[RequestParameter("name", RequestParameterType.Path)]
public virtual string Name { get; }
Property Value
Type | Description |
---|---|
string |
PageSize
Optional. Maximum number of stage attempts (paging based on stage_attempt_id) to return in each response. The service may return fewer than this. The default page size is 10; the maximum page size is 100.
Declaration
[RequestParameter("pageSize", RequestParameterType.Query)]
public virtual int? PageSize { get; set; }
Property Value
Type | Description |
---|---|
int? |
PageToken
Optional. A page token received from a previous SearchSessionSparkApplicationStageAttempts call. Provide this token to retrieve the subsequent page.
Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
public virtual string PageToken { get; set; }
Property Value
Type | Description |
---|---|
string |
Parent
Required. Parent (Session) resource reference.
Declaration
[RequestParameter("parent", RequestParameterType.Query)]
public virtual string Parent { get; set; }
Property Value
Type | Description |
---|---|
string |
RestPath
Gets the REST path.
Declaration
public override string RestPath { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
StageId
Required. Stage ID for which attempts are to be fetched
Declaration
[RequestParameter("stageId", RequestParameterType.Query)]
public virtual long? StageId { get; set; }
Property Value
Type | Description |
---|---|
long? |
SummaryMetricsMask
Optional. The list of summary metrics fields to include. Empty list will default to skip all summary metrics fields. Example, if the response should include TaskQuantileMetrics, the request should have task_quantile_metrics in summary_metrics_mask field
Declaration
[RequestParameter("summaryMetricsMask", RequestParameterType.Query)]
public virtual object SummaryMetricsMask { get; set; }
Property Value
Type | Description |
---|---|
object |
Methods
InitParameters()
Initializes SearchStageAttempts parameter list.
Declaration
protected override void InitParameters()