Show / Hide Table of Contents

Class InterconnectsResource

The "interconnects" collection of methods.

Inheritance
System.Object
InterconnectsResource
Inherited Members
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.Compute.v1
Assembly: Google.Apis.Compute.v1.dll
Syntax
public class InterconnectsResource

Constructors

InterconnectsResource(IClientService)

Constructs a new resource.

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

Methods

Delete(String, String)

Deletes the specified interconnect.

Declaration
public virtual InterconnectsResource.DeleteRequest Delete(string project, string interconnect)
Parameters
Type Name Description
System.String project

Project ID for this request.

System.String interconnect

Name of the interconnect to delete.

Returns
Type Description
InterconnectsResource.DeleteRequest

Get(String, String)

Returns the specified interconnect. Get a list of available interconnects by making a list() request.

Declaration
public virtual InterconnectsResource.GetRequest Get(string project, string interconnect)
Parameters
Type Name Description
System.String project

Project ID for this request.

System.String interconnect

Name of the interconnect to return.

Returns
Type Description
InterconnectsResource.GetRequest

GetDiagnostics(String, String)

Returns the interconnectDiagnostics for the specified interconnect.

Declaration
public virtual InterconnectsResource.GetDiagnosticsRequest GetDiagnostics(string project, string interconnect)
Parameters
Type Name Description
System.String project

Project ID for this request.

System.String interconnect

Name of the interconnect resource to query.

Returns
Type Description
InterconnectsResource.GetDiagnosticsRequest

Insert(Interconnect, String)

Creates a Interconnect in the specified project using the data included in the request.

Declaration
public virtual InterconnectsResource.InsertRequest Insert(Interconnect body, string project)
Parameters
Type Name Description
Interconnect body

The body of the request.

System.String project

Project ID for this request.

Returns
Type Description
InterconnectsResource.InsertRequest

List(String)

Retrieves the list of interconnect available to the specified project.

Declaration
public virtual InterconnectsResource.ListRequest List(string project)
Parameters
Type Name Description
System.String project

Project ID for this request.

Returns
Type Description
InterconnectsResource.ListRequest

Patch(Interconnect, String, String)

Updates the specified interconnect with the data included in the request. This method supports PATCH semantics and uses the JSON merge patch format and processing rules.

Declaration
public virtual InterconnectsResource.PatchRequest Patch(Interconnect body, string project, string interconnect)
Parameters
Type Name Description
Interconnect body

The body of the request.

System.String project

Project ID for this request.

System.String interconnect

Name of the interconnect to update.

Returns
Type Description
InterconnectsResource.PatchRequest
In This Article
Back to top