Show / Hide Table of Contents

Class NamespacesResource.ServicesResource

The "services" collection of methods.

Inheritance
System.Object
NamespacesResource.ServicesResource
Namespace: Google.Apis.CloudRun.v1
Assembly: Google.Apis.CloudRun.v1.dll
Syntax
public class ServicesResource : object

Constructors

ServicesResource(IClientService)

Constructs a new resource.

Declaration
public ServicesResource(IClientService service)
Parameters
Type Name Description
IClientService service

Methods

Create(Service, String)

Create a service.

Declaration
public virtual NamespacesResource.ServicesResource.CreateRequest Create(Service body, string parent)
Parameters
Type Name Description
Service body

The body of the request.

System.String parent

The namespace in which the service should be created. For Cloud Run (fully managed), replace {namespace_id} with the project ID or number.

Returns
Type Description
NamespacesResource.ServicesResource.CreateRequest

Delete(String)

Delete a service. This will cause the Service to stop serving traffic and will delete the child entities like Routes, Configurations and Revisions.

Declaration
public virtual NamespacesResource.ServicesResource.DeleteRequest Delete(string name)
Parameters
Type Name Description
System.String name

The name of the service to delete. For Cloud Run (fully managed), replace {namespace_id} with the project ID or number.

Returns
Type Description
NamespacesResource.ServicesResource.DeleteRequest

Get(String)

Get information about a service.

Declaration
public virtual NamespacesResource.ServicesResource.GetRequest Get(string name)
Parameters
Type Name Description
System.String name

The name of the service to retrieve. For Cloud Run (fully managed), replace {namespace_id} with the project ID or number.

Returns
Type Description
NamespacesResource.ServicesResource.GetRequest

List(String)

List services.

Declaration
public virtual NamespacesResource.ServicesResource.ListRequest List(string parent)
Parameters
Type Name Description
System.String parent

The namespace from which the services should be listed. For Cloud Run (fully managed), replace {namespace_id} with the project ID or number.

Returns
Type Description
NamespacesResource.ServicesResource.ListRequest

ReplaceService(Service, String)

Replace a service.

Only the spec and metadata labels and annotations are modifiable. After the Update request, Cloud Run will work to make the 'status' match the requested 'spec'.

May provide metadata.resourceVersion to enforce update from last read for optimistic concurrency control.

Declaration
public virtual NamespacesResource.ServicesResource.ReplaceServiceRequest ReplaceService(Service body, string name)
Parameters
Type Name Description
Service body

The body of the request.

System.String name

The name of the service being replaced. For Cloud Run (fully managed), replace {namespace_id} with the project ID or number.

Returns
Type Description
NamespacesResource.ServicesResource.ReplaceServiceRequest
Back to top