Show / Hide Table of Contents

Class ProjectsResource.LocationsResource.DomainmappingsResource.DeleteRequest

Rpc to delete a domain mapping.

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<Empty>
CloudRunBaseServiceRequest<Empty>
ProjectsResource.LocationsResource.DomainmappingsResource.DeleteRequest
Implements
IClientServiceRequest<Empty>
IClientServiceRequest
Inherited Members
CloudRunBaseServiceRequest<Empty>.Xgafv
CloudRunBaseServiceRequest<Empty>.AccessToken
CloudRunBaseServiceRequest<Empty>.Alt
CloudRunBaseServiceRequest<Empty>.Callback
CloudRunBaseServiceRequest<Empty>.Fields
CloudRunBaseServiceRequest<Empty>.Key
CloudRunBaseServiceRequest<Empty>.OauthToken
CloudRunBaseServiceRequest<Empty>.PrettyPrint
CloudRunBaseServiceRequest<Empty>.QuotaUser
CloudRunBaseServiceRequest<Empty>.UploadType
CloudRunBaseServiceRequest<Empty>.UploadProtocol
ClientServiceRequest<Empty>.Execute()
ClientServiceRequest<Empty>.ExecuteAsStream()
ClientServiceRequest<Empty>.ExecuteAsync()
ClientServiceRequest<Empty>.ExecuteAsync(CancellationToken)
ClientServiceRequest<Empty>.ExecuteAsStreamAsync()
ClientServiceRequest<Empty>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<Empty>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<Empty>.GenerateRequestUri()
ClientServiceRequest<Empty>.GetBody()
ClientServiceRequest<Empty>.GetDefaultETagAction(String)
ClientServiceRequest<Empty>.ETagAction
ClientServiceRequest<Empty>.ModifyRequest
ClientServiceRequest<Empty>.RequestParameters
ClientServiceRequest<Empty>.Service
ClientServiceRequest._unsuccessfulResponseHandlers
ClientServiceRequest._exceptionHandlers
ClientServiceRequest._executeInterceptors
ClientServiceRequest.AddUnsuccessfulResponseHandler(IHttpUnsuccessfulResponseHandler)
ClientServiceRequest.AddExceptionHandler(IHttpExceptionHandler)
ClientServiceRequest.AddExecuteInterceptor(IHttpExecuteInterceptor)
ClientServiceRequest.Credential
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.CloudRun.v1alpha1
Assembly: Google.Apis.CloudRun.v1alpha1.dll
Syntax
public class DeleteRequest : CloudRunBaseServiceRequest<Empty>, IClientServiceRequest<Empty>, IClientServiceRequest

Constructors

DeleteRequest(IClientService, String)

Constructs a new Delete request.

Declaration
public DeleteRequest(IClientService service, string name)
Parameters
Type Name Description
IClientService service
System.String name

Properties

ApiVersion

Cloud Run currently ignores this parameter.

Declaration
[RequestParameter("apiVersion", RequestParameterType.Query)]
public virtual string ApiVersion { get; set; }
Property Value
Type Description
System.String

HttpMethod

Gets the HTTP method.

Declaration
public override string HttpMethod { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudRun.v1alpha1.Data.Empty>.HttpMethod

Kind

Cloud Run currently ignores this parameter.

Declaration
[RequestParameter("kind", RequestParameterType.Query)]
public virtual string Kind { get; set; }
Property Value
Type Description
System.String

MethodName

Gets the method name.

Declaration
public override string MethodName { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudRun.v1alpha1.Data.Empty>.MethodName

Name

The name of the domain mapping being deleted. If needed, replace {namespace_id} with the project ID.

Declaration
[RequestParameter("name", RequestParameterType.Path)]
public virtual string Name { get; }
Property Value
Type Description
System.String

OrphanDependents

Deprecated. Specifies the cascade behavior on delete. Cloud Run only supports cascading behavior, so this must be false. This attribute is deprecated, and is now replaced with PropagationPolicy See https://github.com/kubernetes/kubernetes/issues/46659 for more info.

Declaration
[RequestParameter("orphanDependents", RequestParameterType.Query)]
public virtual bool? OrphanDependents { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

PropagationPolicy

Specifies the propagation policy of delete. Cloud Run currently ignores this setting, and deletes in the background. Please see kubernetes.io/docs/concepts/workloads/controllers /garbage-collection/ for more information.

Declaration
[RequestParameter("propagationPolicy", RequestParameterType.Query)]
public virtual string PropagationPolicy { get; set; }
Property Value
Type Description
System.String

RestPath

Gets the REST path.

Declaration
public override string RestPath { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudRun.v1alpha1.Data.Empty>.RestPath

Methods

InitParameters()

Initializes Delete parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.CloudRun.v1alpha1.CloudRunBaseServiceRequest<Google.Apis.CloudRun.v1alpha1.Data.Empty>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
Back to top