Show / Hide Table of Contents

Class ListStackAssociatedResourcesRequest

Inheritance
object
ListStackAssociatedResourcesRequest
Implements
IOciRequest
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ResourcemanagerService.Requests
Assembly: OCI.DotNetSDK.Resourcemanager.dll
Syntax
public class ListStackAssociatedResourcesRequest : IOciRequest
Examples

Click here to see an example of how to use ListStackAssociatedResources request.

Properties

CompartmentId

Declaration
[HttpConverter(TargetEnum.Query, "compartmentId")]
public string CompartmentId { get; set; }
Property Value
Type Description
string

A filter to return only resources that exist in the compartment, identified by OCID.

Limit

Declaration
[HttpConverter(TargetEnum.Query, "limit")]
public int? Limit { get; set; }
Property Value
Type Description
int?

The number of items returned in a paginated List call. For information about pagination, see List Pagination.

OpcRequestId

Declaration
[HttpConverter(TargetEnum.Header, "opc-request-id")]
public string OpcRequestId { get; set; }
Property Value
Type Description
string

Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.

Page

Declaration
[HttpConverter(TargetEnum.Query, "page")]
public string Page { get; set; }
Property Value
Type Description
string

The value of the opc-next-page response header from the preceding List call. For information about pagination, see List Pagination.

StackId

Declaration
[Required(ErrorMessage = "StackId is required.")]
[HttpConverter(TargetEnum.Path, "stackId")]
public string StackId { get; set; }
Property Value
Type Description
string

The OCID of the stack.

Remarks

Required

TerraformResourceType

Declaration
[HttpConverter(TargetEnum.Query, "terraformResourceType")]
public string TerraformResourceType { get; set; }
Property Value
Type Description
string

A filter to return only specified resource types. For more information about resource types supported for the Oracle Cloud Infrastructure [OCI] provider, see Oracle Cloud Infrastructure Provider.

Implements

IOciRequest
In this article
Back to top