Documentation ¶
Index ¶
- type ApplyJobPlanResolution
- type CancelJobRequest
- type CancelJobResponse
- type ConfigSource
- type CreateConfigSourceDetails
- type CreateJobDetails
- type CreateJobRequest
- type CreateJobResponse
- type CreateStackDetails
- type CreateStackRequest
- type CreateStackResponse
- type CreateZipUploadConfigSourceDetails
- type DeleteStackRequest
- type DeleteStackResponse
- type FailureDetails
- type FailureDetailsCodeEnum
- type GetJobLogsContentRequest
- type GetJobLogsContentResponse
- type GetJobLogsRequest
- type GetJobLogsResponse
- type GetJobLogsSortOrderEnum
- type GetJobRequest
- type GetJobResponse
- type GetJobTfConfigRequest
- type GetJobTfConfigResponse
- type GetJobTfStateRequest
- type GetJobTfStateResponse
- type GetStackRequest
- type GetStackResponse
- type GetStackTfConfigRequest
- type GetStackTfConfigResponse
- type Job
- type JobLifecycleStateEnum
- type JobOperationEnum
- type JobSummary
- type ListJobsRequest
- type ListJobsResponse
- type ListJobsSortByEnum
- type ListJobsSortOrderEnum
- type ListStacksRequest
- type ListStacksResponse
- type ListStacksSortByEnum
- type ListStacksSortOrderEnum
- type LogEntry
- type LogEntryLevelEnum
- type LogEntryTypeEnum
- type ResourceManagerClient
- func (client ResourceManagerClient) CancelJob(ctx context.Context, request CancelJobRequest) (response CancelJobResponse, err error)
- func (client *ResourceManagerClient) ConfigurationProvider() *common.ConfigurationProvider
- func (client ResourceManagerClient) CreateJob(ctx context.Context, request CreateJobRequest) (response CreateJobResponse, err error)
- func (client ResourceManagerClient) CreateStack(ctx context.Context, request CreateStackRequest) (response CreateStackResponse, err error)
- func (client ResourceManagerClient) DeleteStack(ctx context.Context, request DeleteStackRequest) (response DeleteStackResponse, err error)
- func (client ResourceManagerClient) GetJob(ctx context.Context, request GetJobRequest) (response GetJobResponse, err error)
- func (client ResourceManagerClient) GetJobLogs(ctx context.Context, request GetJobLogsRequest) (response GetJobLogsResponse, err error)
- func (client ResourceManagerClient) GetJobLogsContent(ctx context.Context, request GetJobLogsContentRequest) (response GetJobLogsContentResponse, err error)
- func (client ResourceManagerClient) GetJobTfConfig(ctx context.Context, request GetJobTfConfigRequest) (response GetJobTfConfigResponse, err error)
- func (client ResourceManagerClient) GetJobTfState(ctx context.Context, request GetJobTfStateRequest) (response GetJobTfStateResponse, err error)
- func (client ResourceManagerClient) GetStack(ctx context.Context, request GetStackRequest) (response GetStackResponse, err error)
- func (client ResourceManagerClient) GetStackTfConfig(ctx context.Context, request GetStackTfConfigRequest) (response GetStackTfConfigResponse, err error)
- func (client ResourceManagerClient) ListJobs(ctx context.Context, request ListJobsRequest) (response ListJobsResponse, err error)
- func (client ResourceManagerClient) ListStacks(ctx context.Context, request ListStacksRequest) (response ListStacksResponse, err error)
- func (client *ResourceManagerClient) SetRegion(region string)
- func (client ResourceManagerClient) UpdateJob(ctx context.Context, request UpdateJobRequest) (response UpdateJobResponse, err error)
- func (client ResourceManagerClient) UpdateStack(ctx context.Context, request UpdateStackRequest) (response UpdateStackResponse, err error)
- type Stack
- type StackLifecycleStateEnum
- type StackSummary
- type UpdateConfigSourceDetails
- type UpdateJobDetails
- type UpdateJobRequest
- type UpdateJobResponse
- type UpdateStackDetails
- type UpdateStackRequest
- type UpdateStackResponse
- type UpdateZipUploadConfigSourceDetails
- type ZipUploadConfigSource
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ApplyJobPlanResolution ¶
type ApplyJobPlanResolution struct { // OCID that specifies the most recently executed plan job. PlanJobId *string `mandatory:"false" json:"planJobId"` // Specifies whether to use the OCID of the most recently run plan job. // `True` if using the latest job OCID. Must be a plan job that completed successfully. IsUseLatestJobId *bool `mandatory:"false" json:"isUseLatestJobId"` // Specifies whether to use the configuration directly, without reference to a Plan job. // `True` if using the configuration directly. Note that it is not necessary // for a Plan job to have run successfully. IsAutoApproved *bool `mandatory:"false" json:"isAutoApproved"` }
ApplyJobPlanResolution Specifies which plan job provides an execution plan for input to the apply or destroy job. You can set only one of the three job properties. For destroy jobs, only `isAutoApproved` is permitted.
func (ApplyJobPlanResolution) String ¶
func (m ApplyJobPlanResolution) String() string
type CancelJobRequest ¶
type CancelJobRequest struct { // The job OCID. JobId *string `mandatory:"true" contributesTo:"path" name:"jobId"` // Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a // particular request, please provide the request ID. OpcRequestId *string `mandatory:"false" contributesTo:"header" name:"opc-request-id"` // For optimistic concurrency control. In the `PUT` or `DELETE` call for a resource, set the `if-match` // parameter to the value of the etag from a previous `GET` or `POST` response for that resource. The resource // will be updated or deleted only if the etag you provide matches the resource's current etag value. IfMatch *string `mandatory:"false" contributesTo:"header" name:"if-match"` // Metadata about the request. This information will not be transmitted to the service, but // represents information that the SDK will consume to drive retry behavior. RequestMetadata common.RequestMetadata }
CancelJobRequest wrapper for the CancelJob operation
func (CancelJobRequest) HTTPRequest ¶
func (request CancelJobRequest) HTTPRequest(method, path string) (http.Request, error)
HTTPRequest implements the OCIRequest interface
func (CancelJobRequest) RetryPolicy ¶
func (request CancelJobRequest) RetryPolicy() *common.RetryPolicy
RetryPolicy implements the OCIRetryableRequest interface. This retrieves the specified retry policy.
func (CancelJobRequest) String ¶
func (request CancelJobRequest) String() string
type CancelJobResponse ¶
type CancelJobResponse struct { // The underlying http response RawResponse *http.Response // Unique identifier for the request. OpcRequestId *string `presentIn:"header" name:"opc-request-id"` }
CancelJobResponse wrapper for the CancelJob operation
func (CancelJobResponse) HTTPResponse ¶
func (response CancelJobResponse) HTTPResponse() *http.Response
HTTPResponse implements the OCIResponse interface
func (CancelJobResponse) String ¶
func (response CancelJobResponse) String() string
type ConfigSource ¶
type ConfigSource interface { // File path to the directory from which Terraform runs. // If not specified, we use the root directory. GetWorkingDirectory() *string }
ConfigSource Location of the zip file that contains the Terraform configuration.
type CreateConfigSourceDetails ¶
type CreateConfigSourceDetails interface { // File path to the directory from which Terraform runs. // If not specified, the root directory is used. GetWorkingDirectory() *string }
CreateConfigSourceDetails Property details for the configuration source.
type CreateJobDetails ¶
type CreateJobDetails struct { // OCID of the stack that is associated with the current job. StackId *string `mandatory:"true" json:"stackId"` // Terraform-specific operation to execute. Operation JobOperationEnum `mandatory:"true" json:"operation"` // Description of the job. DisplayName *string `mandatory:"false" json:"displayName"` ApplyJobPlanResolution *ApplyJobPlanResolution `mandatory:"false" json:"applyJobPlanResolution"` // Free-form tags associated with this resource. Each tag is a key-value pair with no predefined name, type, or namespace. // For more information, see Resource Tags (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). // Example: `{"Department": "Finance"}` FreeformTags map[string]string `mandatory:"false" json:"freeformTags"` // Defined tags for this resource. Each key is predefined and scoped to a namespace. // For more information, see Resource Tags (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). // Example: `{"Operations": {"CostCenter": "42"}}` DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` }
CreateJobDetails Defines the requirements and properties of a job to create and run against the specified stack.
func (CreateJobDetails) String ¶
func (m CreateJobDetails) String() string
type CreateJobRequest ¶
type CreateJobRequest struct { // The properties for a request to create a job. CreateJobDetails `contributesTo:"body"` // Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a // particular request, please provide the request ID. OpcRequestId *string `mandatory:"false" contributesTo:"header" name:"opc-request-id"` // A token that uniquely identifies a request so it can be retried in case of a timeout or // server error without risk of retrying the same action. Retry tokens expire after // 24 hours, but can be invalidated before then due to conflicting operations. For example, // if a resource has been deleted and purged from the system, then a retry of the original // creation request may be rejected. OpcRetryToken *string `mandatory:"false" contributesTo:"header" name:"opc-retry-token"` // Metadata about the request. This information will not be transmitted to the service, but // represents information that the SDK will consume to drive retry behavior. RequestMetadata common.RequestMetadata }
CreateJobRequest wrapper for the CreateJob operation
func (CreateJobRequest) HTTPRequest ¶
func (request CreateJobRequest) HTTPRequest(method, path string) (http.Request, error)
HTTPRequest implements the OCIRequest interface
func (CreateJobRequest) RetryPolicy ¶
func (request CreateJobRequest) RetryPolicy() *common.RetryPolicy
RetryPolicy implements the OCIRetryableRequest interface. This retrieves the specified retry policy.
func (CreateJobRequest) String ¶
func (request CreateJobRequest) String() string
type CreateJobResponse ¶
type CreateJobResponse struct { // The underlying http response RawResponse *http.Response // The Job instance Job `presentIn:"body"` // Unique identifier for the request. OpcRequestId *string `presentIn:"header" name:"opc-request-id"` // For optimistic concurrency control. See `if-match`. Etag *string `presentIn:"header" name:"etag"` }
CreateJobResponse wrapper for the CreateJob operation
func (CreateJobResponse) HTTPResponse ¶
func (response CreateJobResponse) HTTPResponse() *http.Response
HTTPResponse implements the OCIResponse interface
func (CreateJobResponse) String ¶
func (response CreateJobResponse) String() string
type CreateStackDetails ¶
type CreateStackDetails struct { // Unique identifier (OCID) of the compartment in which the stack resides. CompartmentId *string `mandatory:"true" json:"compartmentId"` ConfigSource CreateConfigSourceDetails `mandatory:"true" json:"configSource"` // The stack's display name. DisplayName *string `mandatory:"false" json:"displayName"` // Description of the stack. Description *string `mandatory:"false" json:"description"` // Terraform variables associated with this resource. // Maximum number of variables supported is 100. // The maximum size of each variable, including both name and value, is 4096 bytes. // Example: `{"CompartmentId": "compartment-id-value"}` Variables map[string]string `mandatory:"false" json:"variables"` // Free-form tags associated with this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. // For more information, see Resource Tags (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). // Example: `{"Department": "Finance"}` FreeformTags map[string]string `mandatory:"false" json:"freeformTags"` // Defined tags associated with this resource. Each key is predefined and scoped to a namespace. // For more information, see Resource Tags (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). // Example: `{"Operations": {"CostCenter": "42"}}` DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` }
CreateStackDetails Properties provided for creating a stack.
func (CreateStackDetails) String ¶
func (m CreateStackDetails) String() string
func (*CreateStackDetails) UnmarshalJSON ¶
func (m *CreateStackDetails) UnmarshalJSON(data []byte) (e error)
UnmarshalJSON unmarshals from json
type CreateStackRequest ¶
type CreateStackRequest struct { // The properties for creating a stack. CreateStackDetails `contributesTo:"body"` // Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a // particular request, please provide the request ID. OpcRequestId *string `mandatory:"false" contributesTo:"header" name:"opc-request-id"` // A token that uniquely identifies a request so it can be retried in case of a timeout or // server error without risk of retrying the same action. Retry tokens expire after // 24 hours, but can be invalidated before then due to conflicting operations. For example, // if a resource has been deleted and purged from the system, then a retry of the original // creation request may be rejected. OpcRetryToken *string `mandatory:"false" contributesTo:"header" name:"opc-retry-token"` // Metadata about the request. This information will not be transmitted to the service, but // represents information that the SDK will consume to drive retry behavior. RequestMetadata common.RequestMetadata }
CreateStackRequest wrapper for the CreateStack operation
func (CreateStackRequest) HTTPRequest ¶
func (request CreateStackRequest) HTTPRequest(method, path string) (http.Request, error)
HTTPRequest implements the OCIRequest interface
func (CreateStackRequest) RetryPolicy ¶
func (request CreateStackRequest) RetryPolicy() *common.RetryPolicy
RetryPolicy implements the OCIRetryableRequest interface. This retrieves the specified retry policy.
func (CreateStackRequest) String ¶
func (request CreateStackRequest) String() string
type CreateStackResponse ¶
type CreateStackResponse struct { // The underlying http response RawResponse *http.Response // The Stack instance Stack `presentIn:"body"` // Unique identifier for the request. OpcRequestId *string `presentIn:"header" name:"opc-request-id"` // For optimistic concurrency control. See `if-match`. Etag *string `presentIn:"header" name:"etag"` }
CreateStackResponse wrapper for the CreateStack operation
func (CreateStackResponse) HTTPResponse ¶
func (response CreateStackResponse) HTTPResponse() *http.Response
HTTPResponse implements the OCIResponse interface
func (CreateStackResponse) String ¶
func (response CreateStackResponse) String() string
type CreateZipUploadConfigSourceDetails ¶
type CreateZipUploadConfigSourceDetails struct { ZipFileBase64Encoded *string `mandatory:"true" json:"zipFileBase64Encoded"` // File path to the directory from which Terraform runs. // If not specified, the root directory is used. WorkingDirectory *string `mandatory:"false" json:"workingDirectory"` }
CreateZipUploadConfigSourceDetails Property details for uploading the configuration zip file.
func (CreateZipUploadConfigSourceDetails) GetWorkingDirectory ¶
func (m CreateZipUploadConfigSourceDetails) GetWorkingDirectory() *string
GetWorkingDirectory returns WorkingDirectory
func (CreateZipUploadConfigSourceDetails) MarshalJSON ¶
func (m CreateZipUploadConfigSourceDetails) MarshalJSON() (buff []byte, e error)
MarshalJSON marshals to json representation
func (CreateZipUploadConfigSourceDetails) String ¶
func (m CreateZipUploadConfigSourceDetails) String() string
type DeleteStackRequest ¶
type DeleteStackRequest struct { // The stack OCID. StackId *string `mandatory:"true" contributesTo:"path" name:"stackId"` // Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a // particular request, please provide the request ID. OpcRequestId *string `mandatory:"false" contributesTo:"header" name:"opc-request-id"` // For optimistic concurrency control. In the `PUT` or `DELETE` call for a resource, set the `if-match` // parameter to the value of the etag from a previous `GET` or `POST` response for that resource. The resource // will be updated or deleted only if the etag you provide matches the resource's current etag value. IfMatch *string `mandatory:"false" contributesTo:"header" name:"if-match"` // Metadata about the request. This information will not be transmitted to the service, but // represents information that the SDK will consume to drive retry behavior. RequestMetadata common.RequestMetadata }
DeleteStackRequest wrapper for the DeleteStack operation
func (DeleteStackRequest) HTTPRequest ¶
func (request DeleteStackRequest) HTTPRequest(method, path string) (http.Request, error)
HTTPRequest implements the OCIRequest interface
func (DeleteStackRequest) RetryPolicy ¶
func (request DeleteStackRequest) RetryPolicy() *common.RetryPolicy
RetryPolicy implements the OCIRetryableRequest interface. This retrieves the specified retry policy.
func (DeleteStackRequest) String ¶
func (request DeleteStackRequest) String() string
type DeleteStackResponse ¶
type DeleteStackResponse struct { // The underlying http response RawResponse *http.Response // Unique identifier for the request. OpcRequestId *string `presentIn:"header" name:"opc-request-id"` }
DeleteStackResponse wrapper for the DeleteStack operation
func (DeleteStackResponse) HTTPResponse ¶
func (response DeleteStackResponse) HTTPResponse() *http.Response
HTTPResponse implements the OCIResponse interface
func (DeleteStackResponse) String ¶
func (response DeleteStackResponse) String() string
type FailureDetails ¶
type FailureDetails struct { // Job failure reason. Code FailureDetailsCodeEnum `mandatory:"true" json:"code"` // A human-readable error string. Message *string `mandatory:"true" json:"message"` }
FailureDetails The representation of FailureDetails
func (FailureDetails) String ¶
func (m FailureDetails) String() string
type FailureDetailsCodeEnum ¶
type FailureDetailsCodeEnum string
FailureDetailsCodeEnum Enum with underlying type: string
const ( FailureDetailsCodeInternalServiceError FailureDetailsCodeEnum = "INTERNAL_SERVICE_ERROR" FailureDetailsCodeTerraformExecutionError FailureDetailsCodeEnum = "TERRAFORM_EXECUTION_ERROR" FailureDetailsCodeTerraformConfigUnzipFailed FailureDetailsCodeEnum = "TERRAFORM_CONFIG_UNZIP_FAILED" FailureDetailsCodeInvalidWorkingDirectory FailureDetailsCodeEnum = "INVALID_WORKING_DIRECTORY" FailureDetailsCodeJobTimeout FailureDetailsCodeEnum = "JOB_TIMEOUT" FailureDetailsCodeTerraformConfigVirusFound FailureDetailsCodeEnum = "TERRAFORM_CONFIG_VIRUS_FOUND" )
Set of constants representing the allowable values for FailureDetailsCodeEnum
func GetFailureDetailsCodeEnumValues ¶
func GetFailureDetailsCodeEnumValues() []FailureDetailsCodeEnum
GetFailureDetailsCodeEnumValues Enumerates the set of values for FailureDetailsCodeEnum
type GetJobLogsContentRequest ¶
type GetJobLogsContentRequest struct { // The job OCID. JobId *string `mandatory:"true" contributesTo:"path" name:"jobId"` // Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a // particular request, please provide the request ID. OpcRequestId *string `mandatory:"false" contributesTo:"header" name:"opc-request-id"` // Metadata about the request. This information will not be transmitted to the service, but // represents information that the SDK will consume to drive retry behavior. RequestMetadata common.RequestMetadata }
GetJobLogsContentRequest wrapper for the GetJobLogsContent operation
func (GetJobLogsContentRequest) HTTPRequest ¶
func (request GetJobLogsContentRequest) HTTPRequest(method, path string) (http.Request, error)
HTTPRequest implements the OCIRequest interface
func (GetJobLogsContentRequest) RetryPolicy ¶
func (request GetJobLogsContentRequest) RetryPolicy() *common.RetryPolicy
RetryPolicy implements the OCIRetryableRequest interface. This retrieves the specified retry policy.
func (GetJobLogsContentRequest) String ¶
func (request GetJobLogsContentRequest) String() string
type GetJobLogsContentResponse ¶
type GetJobLogsContentResponse struct { // The underlying http response RawResponse *http.Response // The string instance Value *string `presentIn:"body" encoding:"plain-text"` // Unique identifier for the request OpcRequestId *string `presentIn:"header" name:"opc-request-id"` }
GetJobLogsContentResponse wrapper for the GetJobLogsContent operation
func (GetJobLogsContentResponse) HTTPResponse ¶
func (response GetJobLogsContentResponse) HTTPResponse() *http.Response
HTTPResponse implements the OCIResponse interface
func (GetJobLogsContentResponse) String ¶
func (response GetJobLogsContentResponse) String() string
type GetJobLogsRequest ¶
type GetJobLogsRequest struct { // The job OCID. JobId *string `mandatory:"true" contributesTo:"path" name:"jobId"` // Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a // particular request, please provide the request ID. OpcRequestId *string `mandatory:"false" contributesTo:"header" name:"opc-request-id"` // A filter that returns only logs of a specified type. Type []LogEntryTypeEnum `contributesTo:"query" name:"type" omitEmpty:"true" collectionFormat:"multi"` // A filter that returns only log entries that match a given severity level or greater. LevelGreaterThanOrEqualTo LogEntryLevelEnum `mandatory:"false" contributesTo:"query" name:"levelGreaterThanOrEqualTo" omitEmpty:"true"` // The sort order, either `ASC` (ascending) or `DESC` (descending). SortOrder GetJobLogsSortOrderEnum `mandatory:"false" contributesTo:"query" name:"sortOrder" omitEmpty:"true"` // The number of items returned in a paginated `List` call. For information about pagination, see // List Pagination (https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine). Limit *int `mandatory:"false" contributesTo:"query" name:"limit"` // The value of the `opc-next-page` response header from the preceding `List` call. // For information about pagination, see List Pagination (https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine). Page *string `mandatory:"false" contributesTo:"query" name:"page"` // Time stamp specifying the lower time limit for which logs are returned in a query. TimestampGreaterThanOrEqualTo *common.SDKTime `mandatory:"false" contributesTo:"query" name:"timestampGreaterThanOrEqualTo"` // Time stamp specifying the upper time limit for which logs are returned in a query. TimestampLessThanOrEqualTo *common.SDKTime `mandatory:"false" contributesTo:"query" name:"timestampLessThanOrEqualTo"` // Metadata about the request. This information will not be transmitted to the service, but // represents information that the SDK will consume to drive retry behavior. RequestMetadata common.RequestMetadata }
GetJobLogsRequest wrapper for the GetJobLogs operation
func (GetJobLogsRequest) HTTPRequest ¶
func (request GetJobLogsRequest) HTTPRequest(method, path string) (http.Request, error)
HTTPRequest implements the OCIRequest interface
func (GetJobLogsRequest) RetryPolicy ¶
func (request GetJobLogsRequest) RetryPolicy() *common.RetryPolicy
RetryPolicy implements the OCIRetryableRequest interface. This retrieves the specified retry policy.
func (GetJobLogsRequest) String ¶
func (request GetJobLogsRequest) String() string
type GetJobLogsResponse ¶
type GetJobLogsResponse struct { // The underlying http response RawResponse *http.Response // A list of []LogEntry instances Items []LogEntry `presentIn:"body"` // Unique identifier for the request. OpcRequestId *string `presentIn:"header" name:"opc-request-id"` // Retrieves the next page of paginated list items. If the `opc-next-page` // header appears in the response, additional pages of results remain. // To receive the next page, include the header value in the `page` param. // If the `opc-next-page` header does not appear in the response, there // are no more list items to get. For more information about list pagination, // see List Pagination (https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine). OpcNextPage *string `presentIn:"header" name:"opc-next-page"` }
GetJobLogsResponse wrapper for the GetJobLogs operation
func (GetJobLogsResponse) HTTPResponse ¶
func (response GetJobLogsResponse) HTTPResponse() *http.Response
HTTPResponse implements the OCIResponse interface
func (GetJobLogsResponse) String ¶
func (response GetJobLogsResponse) String() string
type GetJobLogsSortOrderEnum ¶
type GetJobLogsSortOrderEnum string
GetJobLogsSortOrderEnum Enum with underlying type: string
const ( GetJobLogsSortOrderAsc GetJobLogsSortOrderEnum = "ASC" GetJobLogsSortOrderDesc GetJobLogsSortOrderEnum = "DESC" )
Set of constants representing the allowable values for GetJobLogsSortOrderEnum
func GetGetJobLogsSortOrderEnumValues ¶
func GetGetJobLogsSortOrderEnumValues() []GetJobLogsSortOrderEnum
GetGetJobLogsSortOrderEnumValues Enumerates the set of values for GetJobLogsSortOrderEnum
type GetJobRequest ¶
type GetJobRequest struct { // The job OCID. JobId *string `mandatory:"true" contributesTo:"path" name:"jobId"` // Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a // particular request, please provide the request ID. OpcRequestId *string `mandatory:"false" contributesTo:"header" name:"opc-request-id"` // Metadata about the request. This information will not be transmitted to the service, but // represents information that the SDK will consume to drive retry behavior. RequestMetadata common.RequestMetadata }
GetJobRequest wrapper for the GetJob operation
func (GetJobRequest) HTTPRequest ¶
func (request GetJobRequest) HTTPRequest(method, path string) (http.Request, error)
HTTPRequest implements the OCIRequest interface
func (GetJobRequest) RetryPolicy ¶
func (request GetJobRequest) RetryPolicy() *common.RetryPolicy
RetryPolicy implements the OCIRetryableRequest interface. This retrieves the specified retry policy.
func (GetJobRequest) String ¶
func (request GetJobRequest) String() string
type GetJobResponse ¶
type GetJobResponse struct { // The underlying http response RawResponse *http.Response // The Job instance Job `presentIn:"body"` // Unique identifier for the request. OpcRequestId *string `presentIn:"header" name:"opc-request-id"` // For optimistic concurrency control. See `if-match`. Etag *string `presentIn:"header" name:"etag"` }
GetJobResponse wrapper for the GetJob operation
func (GetJobResponse) HTTPResponse ¶
func (response GetJobResponse) HTTPResponse() *http.Response
HTTPResponse implements the OCIResponse interface
func (GetJobResponse) String ¶
func (response GetJobResponse) String() string
type GetJobTfConfigRequest ¶
type GetJobTfConfigRequest struct { // The job OCID. JobId *string `mandatory:"true" contributesTo:"path" name:"jobId"` // Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a // particular request, please provide the request ID. OpcRequestId *string `mandatory:"false" contributesTo:"header" name:"opc-request-id"` // Metadata about the request. This information will not be transmitted to the service, but // represents information that the SDK will consume to drive retry behavior. RequestMetadata common.RequestMetadata }
GetJobTfConfigRequest wrapper for the GetJobTfConfig operation
func (GetJobTfConfigRequest) HTTPRequest ¶
func (request GetJobTfConfigRequest) HTTPRequest(method, path string) (http.Request, error)
HTTPRequest implements the OCIRequest interface
func (GetJobTfConfigRequest) RetryPolicy ¶
func (request GetJobTfConfigRequest) RetryPolicy() *common.RetryPolicy
RetryPolicy implements the OCIRetryableRequest interface. This retrieves the specified retry policy.
func (GetJobTfConfigRequest) String ¶
func (request GetJobTfConfigRequest) String() string
type GetJobTfConfigResponse ¶
type GetJobTfConfigResponse struct { // The underlying http response RawResponse *http.Response // The io.ReadCloser instance Content io.ReadCloser `presentIn:"body" encoding:"binary"` // Unique identifier for the request. OpcRequestId *string `presentIn:"header" name:"opc-request-id"` }
GetJobTfConfigResponse wrapper for the GetJobTfConfig operation
func (GetJobTfConfigResponse) HTTPResponse ¶
func (response GetJobTfConfigResponse) HTTPResponse() *http.Response
HTTPResponse implements the OCIResponse interface
func (GetJobTfConfigResponse) String ¶
func (response GetJobTfConfigResponse) String() string
type GetJobTfStateRequest ¶
type GetJobTfStateRequest struct { // The job OCID. JobId *string `mandatory:"true" contributesTo:"path" name:"jobId"` // Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a // particular request, please provide the request ID. OpcRequestId *string `mandatory:"false" contributesTo:"header" name:"opc-request-id"` // Metadata about the request. This information will not be transmitted to the service, but // represents information that the SDK will consume to drive retry behavior. RequestMetadata common.RequestMetadata }
GetJobTfStateRequest wrapper for the GetJobTfState operation
func (GetJobTfStateRequest) HTTPRequest ¶
func (request GetJobTfStateRequest) HTTPRequest(method, path string) (http.Request, error)
HTTPRequest implements the OCIRequest interface
func (GetJobTfStateRequest) RetryPolicy ¶
func (request GetJobTfStateRequest) RetryPolicy() *common.RetryPolicy
RetryPolicy implements the OCIRetryableRequest interface. This retrieves the specified retry policy.
func (GetJobTfStateRequest) String ¶
func (request GetJobTfStateRequest) String() string
type GetJobTfStateResponse ¶
type GetJobTfStateResponse struct { // The underlying http response RawResponse *http.Response // The io.ReadCloser instance Content io.ReadCloser `presentIn:"body" encoding:"binary"` // Unique identifier for the request. OpcRequestId *string `presentIn:"header" name:"opc-request-id"` }
GetJobTfStateResponse wrapper for the GetJobTfState operation
func (GetJobTfStateResponse) HTTPResponse ¶
func (response GetJobTfStateResponse) HTTPResponse() *http.Response
HTTPResponse implements the OCIResponse interface
func (GetJobTfStateResponse) String ¶
func (response GetJobTfStateResponse) String() string
type GetStackRequest ¶
type GetStackRequest struct { // The stack OCID. StackId *string `mandatory:"true" contributesTo:"path" name:"stackId"` // Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a // particular request, please provide the request ID. OpcRequestId *string `mandatory:"false" contributesTo:"header" name:"opc-request-id"` // Metadata about the request. This information will not be transmitted to the service, but // represents information that the SDK will consume to drive retry behavior. RequestMetadata common.RequestMetadata }
GetStackRequest wrapper for the GetStack operation
func (GetStackRequest) HTTPRequest ¶
func (request GetStackRequest) HTTPRequest(method, path string) (http.Request, error)
HTTPRequest implements the OCIRequest interface
func (GetStackRequest) RetryPolicy ¶
func (request GetStackRequest) RetryPolicy() *common.RetryPolicy
RetryPolicy implements the OCIRetryableRequest interface. This retrieves the specified retry policy.
func (GetStackRequest) String ¶
func (request GetStackRequest) String() string
type GetStackResponse ¶
type GetStackResponse struct { // The underlying http response RawResponse *http.Response // The Stack instance Stack `presentIn:"body"` // Unique identifier for the request. OpcRequestId *string `presentIn:"header" name:"opc-request-id"` // For optimistic concurrency control. See `if-match`. Etag *string `presentIn:"header" name:"etag"` }
GetStackResponse wrapper for the GetStack operation
func (GetStackResponse) HTTPResponse ¶
func (response GetStackResponse) HTTPResponse() *http.Response
HTTPResponse implements the OCIResponse interface
func (GetStackResponse) String ¶
func (response GetStackResponse) String() string
type GetStackTfConfigRequest ¶
type GetStackTfConfigRequest struct { // The stack OCID. StackId *string `mandatory:"true" contributesTo:"path" name:"stackId"` // Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a // particular request, please provide the request ID. OpcRequestId *string `mandatory:"false" contributesTo:"header" name:"opc-request-id"` // Metadata about the request. This information will not be transmitted to the service, but // represents information that the SDK will consume to drive retry behavior. RequestMetadata common.RequestMetadata }
GetStackTfConfigRequest wrapper for the GetStackTfConfig operation
func (GetStackTfConfigRequest) HTTPRequest ¶
func (request GetStackTfConfigRequest) HTTPRequest(method, path string) (http.Request, error)
HTTPRequest implements the OCIRequest interface
func (GetStackTfConfigRequest) RetryPolicy ¶
func (request GetStackTfConfigRequest) RetryPolicy() *common.RetryPolicy
RetryPolicy implements the OCIRetryableRequest interface. This retrieves the specified retry policy.
func (GetStackTfConfigRequest) String ¶
func (request GetStackTfConfigRequest) String() string
type GetStackTfConfigResponse ¶
type GetStackTfConfigResponse struct { // The underlying http response RawResponse *http.Response // The io.ReadCloser instance Content io.ReadCloser `presentIn:"body" encoding:"binary"` // Unique identifier for the request. OpcRequestId *string `presentIn:"header" name:"opc-request-id"` }
GetStackTfConfigResponse wrapper for the GetStackTfConfig operation
func (GetStackTfConfigResponse) HTTPResponse ¶
func (response GetStackTfConfigResponse) HTTPResponse() *http.Response
HTTPResponse implements the OCIResponse interface
func (GetStackTfConfigResponse) String ¶
func (response GetStackTfConfigResponse) String() string
type Job ¶
type Job struct { // The job's OCID. Id *string `mandatory:"false" json:"id"` // The OCID of the stack that is associated with the job. StackId *string `mandatory:"false" json:"stackId"` // The OCID of the compartment in which the job's associated stack resides. CompartmentId *string `mandatory:"false" json:"compartmentId"` // The job's display name. DisplayName *string `mandatory:"false" json:"displayName"` // The type of job executing. Operation JobOperationEnum `mandatory:"false" json:"operation,omitempty"` ApplyJobPlanResolution *ApplyJobPlanResolution `mandatory:"false" json:"applyJobPlanResolution"` // The plan job OCID that was used (if this was an apply job and was not auto-approved). ResolvedPlanJobId *string `mandatory:"false" json:"resolvedPlanJobId"` // The date and time at which the job was created. TimeCreated *common.SDKTime `mandatory:"false" json:"timeCreated"` // The date and time at which the job stopped running, irrespective of whether the job ran successfully. TimeFinished *common.SDKTime `mandatory:"false" json:"timeFinished"` LifecycleState JobLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` FailureDetails *FailureDetails `mandatory:"false" json:"failureDetails"` // The file path to the directory within the configuration from which the job runs. WorkingDirectory *string `mandatory:"false" json:"workingDirectory"` // Terraform variables associated with this resource. // Maximum number of variables supported is 100. // The maximum size of each variable, including both name and value, is 4096 bytes. // Example: `{"CompartmentId": "compartment-id-value"}` Variables map[string]string `mandatory:"false" json:"variables"` // Free-form tags associated with this resource. Each tag is a key-value pair with no predefined name, type, or namespace. // For more information, see Resource Tags (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). // Example: `{"Department": "Finance"}` FreeformTags map[string]string `mandatory:"false" json:"freeformTags"` // Defined tags for this resource. Each key is predefined and scoped to a namespace. // For more information, see Resource Tags (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). // Example: `{"Operations": {"CostCenter": "42"}}` DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` }
Job Jobs perform the actions that are defined in your configuration. There are three job types - **Plan job**. A plan job takes your Terraform configuration, parses it, and creates an execution plan. - **Apply job**. The apply job takes your execution plan, applies it to the associated stack, then executes the configuration's instructions. - **Destroy job**. To clean up the infrastructure controlled by the stack, you run a destroy job. A destroy job does not delete the stack or associated job resources, but instead releases the resources managed by the stack.
type JobLifecycleStateEnum ¶
type JobLifecycleStateEnum string
JobLifecycleStateEnum Enum with underlying type: string
const ( JobLifecycleStateAccepted JobLifecycleStateEnum = "ACCEPTED" JobLifecycleStateInProgress JobLifecycleStateEnum = "IN_PROGRESS" JobLifecycleStateFailed JobLifecycleStateEnum = "FAILED" JobLifecycleStateSucceeded JobLifecycleStateEnum = "SUCCEEDED" JobLifecycleStateCanceling JobLifecycleStateEnum = "CANCELING" JobLifecycleStateCanceled JobLifecycleStateEnum = "CANCELED" )
Set of constants representing the allowable values for JobLifecycleStateEnum
func GetJobLifecycleStateEnumValues ¶
func GetJobLifecycleStateEnumValues() []JobLifecycleStateEnum
GetJobLifecycleStateEnumValues Enumerates the set of values for JobLifecycleStateEnum
type JobOperationEnum ¶
type JobOperationEnum string
JobOperationEnum Enum with underlying type: string
const ( JobOperationPlan JobOperationEnum = "PLAN" JobOperationApply JobOperationEnum = "APPLY" JobOperationDestroy JobOperationEnum = "DESTROY" )
Set of constants representing the allowable values for JobOperationEnum
func GetJobOperationEnumValues ¶
func GetJobOperationEnumValues() []JobOperationEnum
GetJobOperationEnumValues Enumerates the set of values for JobOperationEnum
type JobSummary ¶
type JobSummary struct { // The job's OCID. Id *string `mandatory:"false" json:"id"` // OCID of the stack that is associated with the specified job. StackId *string `mandatory:"false" json:"stackId"` // OCID of the compartment where the stack of the associated job resides. CompartmentId *string `mandatory:"false" json:"compartmentId"` // The job's display name. DisplayName *string `mandatory:"false" json:"displayName"` // The type of job executing Operation JobOperationEnum `mandatory:"false" json:"operation,omitempty"` ApplyJobPlanResolution *ApplyJobPlanResolution `mandatory:"false" json:"applyJobPlanResolution"` // The plan job OCID that was used (if this was an APPLY job and not auto approved). ResolvedPlanJobId *string `mandatory:"false" json:"resolvedPlanJobId"` // The date and time the job was created. TimeCreated *common.SDKTime `mandatory:"false" json:"timeCreated"` // The date and time the job succeeded or failed. TimeFinished *common.SDKTime `mandatory:"false" json:"timeFinished"` // Current state of the specified job. Allowed values are: // - ACCEPTED // - IN_PROGRESS // - FAILED // - SUCCEEDED // - CANCELING // - CANCELED LifecycleState JobLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` // Free-form tags associated with this resource. Each tag is a key-value pair with no predefined name, type, or namespace. // For more information, see Resource Tags (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). // Example: `{"Department": "Finance"}` FreeformTags map[string]string `mandatory:"false" json:"freeformTags"` // Defined tags for this resource. Each key is predefined and scoped to a namespace. // For more information, see Resource Tags (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). // Example: `{"Operations": {"CostCenter": "42"}}` DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` }
JobSummary Returns a listing of all of the specified job's properties and their values.
func (JobSummary) String ¶
func (m JobSummary) String() string
type ListJobsRequest ¶
type ListJobsRequest struct { // Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a // particular request, please provide the request ID. OpcRequestId *string `mandatory:"false" contributesTo:"header" name:"opc-request-id"` // The compartment OCID on which to filter. CompartmentId *string `mandatory:"false" contributesTo:"query" name:"compartmentId"` // The stack OCID on which to filter. StackId *string `mandatory:"false" contributesTo:"query" name:"stackId"` // The OCID on which to query for jobs. Id *string `mandatory:"false" contributesTo:"query" name:"id"` // A filter that returns all resources that match the specified lifecycle state. // The state value is case-insensitive. // Allowable values: // - ACCEPTED // - IN_PROGRESS // - FAILED // - SUCCEEDED // - CANCELING // - CANCELED LifecycleState JobLifecycleStateEnum `mandatory:"false" contributesTo:"query" name:"lifecycleState" omitEmpty:"true"` // Display name on which to query. DisplayName *string `mandatory:"false" contributesTo:"query" name:"displayName"` // Specifies the field on which to sort. // By default, `TIMECREATED` is ordered descending. // By default, `DISPLAYNAME` is ordered ascending. Note that you can sort only on one field. SortBy ListJobsSortByEnum `mandatory:"false" contributesTo:"query" name:"sortBy" omitEmpty:"true"` // The sort order, either `ASC` (ascending) or `DESC` (descending). SortOrder ListJobsSortOrderEnum `mandatory:"false" contributesTo:"query" name:"sortOrder" omitEmpty:"true"` // The number of items returned in a paginated `List` call. For information about pagination, see // List Pagination (https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine). Limit *int `mandatory:"false" contributesTo:"query" name:"limit"` // The value of the `opc-next-page` response header from the preceding `List` call. // For information about pagination, see List Pagination (https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine). Page *string `mandatory:"false" contributesTo:"query" name:"page"` // Metadata about the request. This information will not be transmitted to the service, but // represents information that the SDK will consume to drive retry behavior. RequestMetadata common.RequestMetadata }
ListJobsRequest wrapper for the ListJobs operation
func (ListJobsRequest) HTTPRequest ¶
func (request ListJobsRequest) HTTPRequest(method, path string) (http.Request, error)
HTTPRequest implements the OCIRequest interface
func (ListJobsRequest) RetryPolicy ¶
func (request ListJobsRequest) RetryPolicy() *common.RetryPolicy
RetryPolicy implements the OCIRetryableRequest interface. This retrieves the specified retry policy.
func (ListJobsRequest) String ¶
func (request ListJobsRequest) String() string
type ListJobsResponse ¶
type ListJobsResponse struct { // The underlying http response RawResponse *http.Response // A list of []JobSummary instances Items []JobSummary `presentIn:"body"` // Unique identifier for the request. OpcRequestId *string `presentIn:"header" name:"opc-request-id"` // Retrieves the next page of paginated list items. If the `opc-next-page` // header appears in the response, additional pages of results remain. // To receive the next page, include the header value in the `page` param. // If the `opc-next-page` header does not appear in the response, there // are no more list items to get. For more information about list pagination, // see List Pagination (https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine). OpcNextPage *string `presentIn:"header" name:"opc-next-page"` }
ListJobsResponse wrapper for the ListJobs operation
func (ListJobsResponse) HTTPResponse ¶
func (response ListJobsResponse) HTTPResponse() *http.Response
HTTPResponse implements the OCIResponse interface
func (ListJobsResponse) String ¶
func (response ListJobsResponse) String() string
type ListJobsSortByEnum ¶
type ListJobsSortByEnum string
ListJobsSortByEnum Enum with underlying type: string
const ( ListJobsSortByTimecreated ListJobsSortByEnum = "TIMECREATED" ListJobsSortByDisplayname ListJobsSortByEnum = "DISPLAYNAME" )
Set of constants representing the allowable values for ListJobsSortByEnum
func GetListJobsSortByEnumValues ¶
func GetListJobsSortByEnumValues() []ListJobsSortByEnum
GetListJobsSortByEnumValues Enumerates the set of values for ListJobsSortByEnum
type ListJobsSortOrderEnum ¶
type ListJobsSortOrderEnum string
ListJobsSortOrderEnum Enum with underlying type: string
const ( ListJobsSortOrderAsc ListJobsSortOrderEnum = "ASC" ListJobsSortOrderDesc ListJobsSortOrderEnum = "DESC" )
Set of constants representing the allowable values for ListJobsSortOrderEnum
func GetListJobsSortOrderEnumValues ¶
func GetListJobsSortOrderEnumValues() []ListJobsSortOrderEnum
GetListJobsSortOrderEnumValues Enumerates the set of values for ListJobsSortOrderEnum
type ListStacksRequest ¶
type ListStacksRequest struct { // Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a // particular request, please provide the request ID. OpcRequestId *string `mandatory:"false" contributesTo:"header" name:"opc-request-id"` // The compartment OCID on which to filter. CompartmentId *string `mandatory:"false" contributesTo:"query" name:"compartmentId"` // The OCID on which to query for a stack. Id *string `mandatory:"false" contributesTo:"query" name:"id"` // A filter that returns only those resources that match the specified // lifecycle state. The state value is case-insensitive. // Allowable values: // - CREATING // - ACTIVE // - DELETING // - DELETED // LifecycleState StackLifecycleStateEnum `mandatory:"false" contributesTo:"query" name:"lifecycleState" omitEmpty:"true"` // Display name on which to query. DisplayName *string `mandatory:"false" contributesTo:"query" name:"displayName"` // Specifies the field on which to sort. // By default, `TIMECREATED` is ordered descending. // By default, `DISPLAYNAME` is ordered ascending. Note that you can sort only on one field. SortBy ListStacksSortByEnum `mandatory:"false" contributesTo:"query" name:"sortBy" omitEmpty:"true"` // The sort order, either `ASC` (ascending) or `DESC` (descending). SortOrder ListStacksSortOrderEnum `mandatory:"false" contributesTo:"query" name:"sortOrder" omitEmpty:"true"` // The number of items returned in a paginated `List` call. For information about pagination, see // List Pagination (https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine). Limit *int `mandatory:"false" contributesTo:"query" name:"limit"` // The value of the `opc-next-page` response header from the preceding `List` call. // For information about pagination, see List Pagination (https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine). Page *string `mandatory:"false" contributesTo:"query" name:"page"` // Metadata about the request. This information will not be transmitted to the service, but // represents information that the SDK will consume to drive retry behavior. RequestMetadata common.RequestMetadata }
ListStacksRequest wrapper for the ListStacks operation
func (ListStacksRequest) HTTPRequest ¶
func (request ListStacksRequest) HTTPRequest(method, path string) (http.Request, error)
HTTPRequest implements the OCIRequest interface
func (ListStacksRequest) RetryPolicy ¶
func (request ListStacksRequest) RetryPolicy() *common.RetryPolicy
RetryPolicy implements the OCIRetryableRequest interface. This retrieves the specified retry policy.
func (ListStacksRequest) String ¶
func (request ListStacksRequest) String() string
type ListStacksResponse ¶
type ListStacksResponse struct { // The underlying http response RawResponse *http.Response // A list of []StackSummary instances Items []StackSummary `presentIn:"body"` // Unique identifier for the request. OpcRequestId *string `presentIn:"header" name:"opc-request-id"` // Retrieves the next page of paginated list items. If the `opc-next-page` // header appears in the response, additional pages of results remain. // To receive the next page, include the header value in the `page` param. // If the `opc-next-page` header does not appear in the response, there // are no more list items to get. For more information about list pagination, // see List Pagination (https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine). OpcNextPage *string `presentIn:"header" name:"opc-next-page"` }
ListStacksResponse wrapper for the ListStacks operation
func (ListStacksResponse) HTTPResponse ¶
func (response ListStacksResponse) HTTPResponse() *http.Response
HTTPResponse implements the OCIResponse interface
func (ListStacksResponse) String ¶
func (response ListStacksResponse) String() string
type ListStacksSortByEnum ¶
type ListStacksSortByEnum string
ListStacksSortByEnum Enum with underlying type: string
const ( ListStacksSortByTimecreated ListStacksSortByEnum = "TIMECREATED" ListStacksSortByDisplayname ListStacksSortByEnum = "DISPLAYNAME" )
Set of constants representing the allowable values for ListStacksSortByEnum
func GetListStacksSortByEnumValues ¶
func GetListStacksSortByEnumValues() []ListStacksSortByEnum
GetListStacksSortByEnumValues Enumerates the set of values for ListStacksSortByEnum
type ListStacksSortOrderEnum ¶
type ListStacksSortOrderEnum string
ListStacksSortOrderEnum Enum with underlying type: string
const ( ListStacksSortOrderAsc ListStacksSortOrderEnum = "ASC" ListStacksSortOrderDesc ListStacksSortOrderEnum = "DESC" )
Set of constants representing the allowable values for ListStacksSortOrderEnum
func GetListStacksSortOrderEnumValues ¶
func GetListStacksSortOrderEnumValues() []ListStacksSortOrderEnum
GetListStacksSortOrderEnumValues Enumerates the set of values for ListStacksSortOrderEnum
type LogEntry ¶
type LogEntry struct { // Specifies the log type for the log entry. Type LogEntryTypeEnum `mandatory:"false" json:"type,omitempty"` // Specifies the severity level of the log entry. Level LogEntryLevelEnum `mandatory:"false" json:"level,omitempty"` // Date and time of the log entry. Timestamp *common.SDKTime `mandatory:"false" json:"timestamp"` // The log entry value. Message *string `mandatory:"false" json:"message"` }
LogEntry Log entry for an operation resulting from a job's execution.
type LogEntryLevelEnum ¶
type LogEntryLevelEnum string
LogEntryLevelEnum Enum with underlying type: string
const ( LogEntryLevelTrace LogEntryLevelEnum = "TRACE" LogEntryLevelDebug LogEntryLevelEnum = "DEBUG" LogEntryLevelInfo LogEntryLevelEnum = "INFO" LogEntryLevelWarn LogEntryLevelEnum = "WARN" LogEntryLevelError LogEntryLevelEnum = "ERROR" LogEntryLevelFatal LogEntryLevelEnum = "FATAL" )
Set of constants representing the allowable values for LogEntryLevelEnum
func GetLogEntryLevelEnumValues ¶
func GetLogEntryLevelEnumValues() []LogEntryLevelEnum
GetLogEntryLevelEnumValues Enumerates the set of values for LogEntryLevelEnum
type LogEntryTypeEnum ¶
type LogEntryTypeEnum string
LogEntryTypeEnum Enum with underlying type: string
const (
LogEntryTypeConsole LogEntryTypeEnum = "TERRAFORM_CONSOLE"
)
Set of constants representing the allowable values for LogEntryTypeEnum
func GetLogEntryTypeEnumValues ¶
func GetLogEntryTypeEnumValues() []LogEntryTypeEnum
GetLogEntryTypeEnumValues Enumerates the set of values for LogEntryTypeEnum
type ResourceManagerClient ¶
type ResourceManagerClient struct { common.BaseClient // contains filtered or unexported fields }
ResourceManagerClient a client for ResourceManager
func NewResourceManagerClientWithConfigurationProvider ¶
func NewResourceManagerClientWithConfigurationProvider(configProvider common.ConfigurationProvider) (client ResourceManagerClient, err error)
NewResourceManagerClientWithConfigurationProvider Creates a new default ResourceManager client with the given configuration provider. the configuration provider will be used for the default signer as well as reading the region
func (ResourceManagerClient) CancelJob ¶
func (client ResourceManagerClient) CancelJob(ctx context.Context, request CancelJobRequest) (response CancelJobResponse, err error)
CancelJob Indicates the intention to cancel the specified job. Cancellation of the job is not immediate, and may be delayed, or may not happen at all.
func (*ResourceManagerClient) ConfigurationProvider ¶
func (client *ResourceManagerClient) ConfigurationProvider() *common.ConfigurationProvider
ConfigurationProvider the ConfigurationProvider used in this client, or null if none set
func (ResourceManagerClient) CreateJob ¶
func (client ResourceManagerClient) CreateJob(ctx context.Context, request CreateJobRequest) (response CreateJobResponse, err error)
CreateJob Creates a job.
func (ResourceManagerClient) CreateStack ¶
func (client ResourceManagerClient) CreateStack(ctx context.Context, request CreateStackRequest) (response CreateStackResponse, err error)
CreateStack Creates a stack in the specified comparment. Specify the compartment using the compartment ID.
func (ResourceManagerClient) DeleteStack ¶
func (client ResourceManagerClient) DeleteStack(ctx context.Context, request DeleteStackRequest) (response DeleteStackResponse, err error)
DeleteStack Deletes the specified stack object.
func (ResourceManagerClient) GetJob ¶
func (client ResourceManagerClient) GetJob(ctx context.Context, request GetJobRequest) (response GetJobResponse, err error)
GetJob Returns the specified job along with the job details.
func (ResourceManagerClient) GetJobLogs ¶
func (client ResourceManagerClient) GetJobLogs(ctx context.Context, request GetJobLogsRequest) (response GetJobLogsResponse, err error)
GetJobLogs Returns log entries for the specified job in JSON format.
func (ResourceManagerClient) GetJobLogsContent ¶
func (client ResourceManagerClient) GetJobLogsContent(ctx context.Context, request GetJobLogsContentRequest) (response GetJobLogsContentResponse, err error)
GetJobLogsContent Returns raw log file for the specified job in text format. Returns a maximum of 100,000 log entries.
func (ResourceManagerClient) GetJobTfConfig ¶
func (client ResourceManagerClient) GetJobTfConfig(ctx context.Context, request GetJobTfConfigRequest) (response GetJobTfConfigResponse, err error)
GetJobTfConfig Returns the Terraform configuration file for the specified job in .zip format. Returns an error if no zip file is found.
func (ResourceManagerClient) GetJobTfState ¶
func (client ResourceManagerClient) GetJobTfState(ctx context.Context, request GetJobTfStateRequest) (response GetJobTfStateResponse, err error)
GetJobTfState Returns the Terraform state for the specified job.
func (ResourceManagerClient) GetStack ¶
func (client ResourceManagerClient) GetStack(ctx context.Context, request GetStackRequest) (response GetStackResponse, err error)
GetStack Gets a stack using the stack ID.
func (ResourceManagerClient) GetStackTfConfig ¶
func (client ResourceManagerClient) GetStackTfConfig(ctx context.Context, request GetStackTfConfigRequest) (response GetStackTfConfigResponse, err error)
GetStackTfConfig Returns the Terraform configuration file in .zip format for the specified stack. Returns an error if no zip file is found.
func (ResourceManagerClient) ListJobs ¶
func (client ResourceManagerClient) ListJobs(ctx context.Context, request ListJobsRequest) (response ListJobsResponse, err error)
ListJobs Returns a list of jobs in a stack or compartment, ordered by time created. - To list all jobs in a stack, provide the stack OCID. - To list all jobs in a compartment, provide the compartment OCID. - To return a specific job, provide the job OCID.
func (ResourceManagerClient) ListStacks ¶
func (client ResourceManagerClient) ListStacks(ctx context.Context, request ListStacksRequest) (response ListStacksResponse, err error)
ListStacks Returns a list of stacks. - If called using the compartment ID, returns all stacks in the specified compartment. - If called using the stack ID, returns the specified stack.
func (*ResourceManagerClient) SetRegion ¶
func (client *ResourceManagerClient) SetRegion(region string)
SetRegion overrides the region of this client.
func (ResourceManagerClient) UpdateJob ¶
func (client ResourceManagerClient) UpdateJob(ctx context.Context, request UpdateJobRequest) (response UpdateJobResponse, err error)
UpdateJob Updates the specified job.
func (ResourceManagerClient) UpdateStack ¶
func (client ResourceManagerClient) UpdateStack(ctx context.Context, request UpdateStackRequest) (response UpdateStackResponse, err error)
UpdateStack Updates the specified stack object. Use `UpdateStack` when you update your Terraform configuration and want your changes to be reflected in the execution plan.
type Stack ¶
type Stack struct { // Unique identifier (OCID) for the stack. Id *string `mandatory:"false" json:"id"` // Unique identifier (OCID) for the compartment where the stack is located. CompartmentId *string `mandatory:"false" json:"compartmentId"` // Human-readable name of the stack. DisplayName *string `mandatory:"false" json:"displayName"` // Description of the stack. Description *string `mandatory:"false" json:"description"` // The date and time at which the stack was created. TimeCreated *common.SDKTime `mandatory:"false" json:"timeCreated"` // The current lifecycle state of the stack. LifecycleState StackLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` // Specifies the `configSourceType` for uploading the Terraform configuration. // Presently, the .zip file type (`ZIP_UPLOAD`) is the only supported `configSourceType`. ConfigSource ConfigSource `mandatory:"false" json:"configSource"` // Terraform variables associated with this resource. // Maximum number of variables supported is 100. // The maximum size of each variable, including both name and value, is 4096 bytes. // Example: `{"CompartmentId": "compartment-id-value"}` Variables map[string]string `mandatory:"false" json:"variables"` // Free-form tags associated with the resource. Each tag is a key-value pair with no predefined name, type, or namespace. // For more information, see Resource Tags (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). // Example: `{"Department": "Finance"}` FreeformTags map[string]string `mandatory:"false" json:"freeformTags"` // Defined tags for this resource. Each key is predefined and scoped to a namespace. // For more information, see Resource Tags (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). // Example: `{"Operations": {"CostCenter": "42"}}` DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` }
Stack The stack object. Stacks represent definitions of groups of Oracle Cloud Infrastructure resources that you can act upon as a group. You take action on stacks by using jobs.
func (*Stack) UnmarshalJSON ¶
UnmarshalJSON unmarshals from json
type StackLifecycleStateEnum ¶
type StackLifecycleStateEnum string
StackLifecycleStateEnum Enum with underlying type: string
const ( StackLifecycleStateCreating StackLifecycleStateEnum = "CREATING" StackLifecycleStateActive StackLifecycleStateEnum = "ACTIVE" StackLifecycleStateDeleting StackLifecycleStateEnum = "DELETING" StackLifecycleStateDeleted StackLifecycleStateEnum = "DELETED" )
Set of constants representing the allowable values for StackLifecycleStateEnum
func GetStackLifecycleStateEnumValues ¶
func GetStackLifecycleStateEnumValues() []StackLifecycleStateEnum
GetStackLifecycleStateEnumValues Enumerates the set of values for StackLifecycleStateEnum
type StackSummary ¶
type StackSummary struct { // Unique identifier of the specified stack. Id *string `mandatory:"false" json:"id"` // Unique identifier of the compartment in which the stack resides. CompartmentId *string `mandatory:"false" json:"compartmentId"` // Human-readable display name for the stack. DisplayName *string `mandatory:"false" json:"displayName"` // General description of the stack. Description *string `mandatory:"false" json:"description"` // Date and time at which the stack was created. TimeCreated *common.SDKTime `mandatory:"false" json:"timeCreated"` LifecycleState StackLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` // Free-form tags associated with this resource. Each tag is a key-value pair with no predefined name, type, or namespace. // For more information, see Resource Tags (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). // Example: `{"Department": "Finance"}` FreeformTags map[string]string `mandatory:"false" json:"freeformTags"` // Defined tags for this resource. Each key is predefined and scoped to a namespace. // For more information, see Resource Tags (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). // Example: `{"Operations": {"CostCenter": "42"}}` DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` }
StackSummary Returns a list of properties and the defining property values for the specified stack.
func (StackSummary) String ¶
func (m StackSummary) String() string
type UpdateConfigSourceDetails ¶
type UpdateConfigSourceDetails interface { // The path of the directory from which to run terraform. If not specified, the the root will be used. GetWorkingDirectory() *string }
UpdateConfigSourceDetails Updates the property details for the configuration source.
type UpdateJobDetails ¶
type UpdateJobDetails struct { // The new display name to set. DisplayName *string `mandatory:"false" json:"displayName"` // Free-form tags associated with this resource. Each tag is a key-value pair with no predefined name, type, or namespace. // For more information, see Resource Tags (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). // Example: `{"Department": "Finance"}` FreeformTags map[string]string `mandatory:"false" json:"freeformTags"` // Defined tags for this resource. Each key is predefined and scoped to a namespace. // For more information, see Resource Tags (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). // Example: `{"Operations": {"CostCenter": "42"}}` DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` }
UpdateJobDetails Updates the display name, free-form tags, and/or defined tag properties of the job.
func (UpdateJobDetails) String ¶
func (m UpdateJobDetails) String() string
type UpdateJobRequest ¶
type UpdateJobRequest struct { // The job OCID. JobId *string `mandatory:"true" contributesTo:"path" name:"jobId"` // Updates properties for the specified job. UpdateJobDetails `contributesTo:"body"` // Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a // particular request, please provide the request ID. OpcRequestId *string `mandatory:"false" contributesTo:"header" name:"opc-request-id"` // For optimistic concurrency control. In the `PUT` or `DELETE` call for a resource, set the `if-match` // parameter to the value of the etag from a previous `GET` or `POST` response for that resource. The resource // will be updated or deleted only if the etag you provide matches the resource's current etag value. IfMatch *string `mandatory:"false" contributesTo:"header" name:"if-match"` // Metadata about the request. This information will not be transmitted to the service, but // represents information that the SDK will consume to drive retry behavior. RequestMetadata common.RequestMetadata }
UpdateJobRequest wrapper for the UpdateJob operation
func (UpdateJobRequest) HTTPRequest ¶
func (request UpdateJobRequest) HTTPRequest(method, path string) (http.Request, error)
HTTPRequest implements the OCIRequest interface
func (UpdateJobRequest) RetryPolicy ¶
func (request UpdateJobRequest) RetryPolicy() *common.RetryPolicy
RetryPolicy implements the OCIRetryableRequest interface. This retrieves the specified retry policy.
func (UpdateJobRequest) String ¶
func (request UpdateJobRequest) String() string
type UpdateJobResponse ¶
type UpdateJobResponse struct { // The underlying http response RawResponse *http.Response // The Job instance Job `presentIn:"body"` // Unique identifier for the request. OpcRequestId *string `presentIn:"header" name:"opc-request-id"` // For optimistic concurrency control. See `if-match`. Etag *string `presentIn:"header" name:"etag"` }
UpdateJobResponse wrapper for the UpdateJob operation
func (UpdateJobResponse) HTTPResponse ¶
func (response UpdateJobResponse) HTTPResponse() *http.Response
HTTPResponse implements the OCIResponse interface
func (UpdateJobResponse) String ¶
func (response UpdateJobResponse) String() string
type UpdateStackDetails ¶
type UpdateStackDetails struct { // The name of the stack. DisplayName *string `mandatory:"false" json:"displayName"` // Description of the stack. Description *string `mandatory:"false" json:"description"` ConfigSource UpdateConfigSourceDetails `mandatory:"false" json:"configSource"` // Terraform variables associated with this resource. // The maximum number of variables supported is 100. // The maximum size of each variable, including both name and value, is 4096 bytes. // Example: `{"CompartmentId": "compartment-id-value"}` Variables map[string]string `mandatory:"false" json:"variables"` // Free-form tags associated with this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. // For more information, see Resource Tags (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). // Example: `{"Department": "Finance"}` FreeformTags map[string]string `mandatory:"false" json:"freeformTags"` // Defined tags for this resource. Each key is predefined and scoped to a namespace. // For more information, see Resource Tags (https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm). // Example: `{"Operations": {"CostCenter": "42"}}` DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` }
UpdateStackDetails Specifies which fields and the data for each to update on the specified stack.
func (UpdateStackDetails) String ¶
func (m UpdateStackDetails) String() string
func (*UpdateStackDetails) UnmarshalJSON ¶
func (m *UpdateStackDetails) UnmarshalJSON(data []byte) (e error)
UnmarshalJSON unmarshals from json
type UpdateStackRequest ¶
type UpdateStackRequest struct { // The stack OCID. StackId *string `mandatory:"true" contributesTo:"path" name:"stackId"` // Updated information provided for the stack. UpdateStackDetails `contributesTo:"body"` // Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a // particular request, please provide the request ID. OpcRequestId *string `mandatory:"false" contributesTo:"header" name:"opc-request-id"` // For optimistic concurrency control. In the `PUT` or `DELETE` call for a resource, set the `if-match` // parameter to the value of the etag from a previous `GET` or `POST` response for that resource. The resource // will be updated or deleted only if the etag you provide matches the resource's current etag value. IfMatch *string `mandatory:"false" contributesTo:"header" name:"if-match"` // Metadata about the request. This information will not be transmitted to the service, but // represents information that the SDK will consume to drive retry behavior. RequestMetadata common.RequestMetadata }
UpdateStackRequest wrapper for the UpdateStack operation
func (UpdateStackRequest) HTTPRequest ¶
func (request UpdateStackRequest) HTTPRequest(method, path string) (http.Request, error)
HTTPRequest implements the OCIRequest interface
func (UpdateStackRequest) RetryPolicy ¶
func (request UpdateStackRequest) RetryPolicy() *common.RetryPolicy
RetryPolicy implements the OCIRetryableRequest interface. This retrieves the specified retry policy.
func (UpdateStackRequest) String ¶
func (request UpdateStackRequest) String() string
type UpdateStackResponse ¶
type UpdateStackResponse struct { // The underlying http response RawResponse *http.Response // The Stack instance Stack `presentIn:"body"` // Unique identifier for the request. OpcRequestId *string `presentIn:"header" name:"opc-request-id"` // For optimistic concurrency control. See `if-match`. Etag *string `presentIn:"header" name:"etag"` }
UpdateStackResponse wrapper for the UpdateStack operation
func (UpdateStackResponse) HTTPResponse ¶
func (response UpdateStackResponse) HTTPResponse() *http.Response
HTTPResponse implements the OCIResponse interface
func (UpdateStackResponse) String ¶
func (response UpdateStackResponse) String() string
type UpdateZipUploadConfigSourceDetails ¶
type UpdateZipUploadConfigSourceDetails struct { // The path of the directory from which to run terraform. If not specified, the the root will be used. WorkingDirectory *string `mandatory:"false" json:"workingDirectory"` ZipFileBase64Encoded *string `mandatory:"false" json:"zipFileBase64Encoded"` }
UpdateZipUploadConfigSourceDetails Updates property details for the configuration .zip file.
func (UpdateZipUploadConfigSourceDetails) GetWorkingDirectory ¶
func (m UpdateZipUploadConfigSourceDetails) GetWorkingDirectory() *string
GetWorkingDirectory returns WorkingDirectory
func (UpdateZipUploadConfigSourceDetails) MarshalJSON ¶
func (m UpdateZipUploadConfigSourceDetails) MarshalJSON() (buff []byte, e error)
MarshalJSON marshals to json representation
func (UpdateZipUploadConfigSourceDetails) String ¶
func (m UpdateZipUploadConfigSourceDetails) String() string
type ZipUploadConfigSource ¶
type ZipUploadConfigSource struct { // File path to the directory from which Terraform runs. // If not specified, we use the root directory. WorkingDirectory *string `mandatory:"false" json:"workingDirectory"` }
ZipUploadConfigSource File path to the location of the zip file that contains the Terraform configuration.
func (ZipUploadConfigSource) GetWorkingDirectory ¶
func (m ZipUploadConfigSource) GetWorkingDirectory() *string
GetWorkingDirectory returns WorkingDirectory
func (ZipUploadConfigSource) MarshalJSON ¶
func (m ZipUploadConfigSource) MarshalJSON() (buff []byte, e error)
MarshalJSON marshals to json representation
func (ZipUploadConfigSource) String ¶
func (m ZipUploadConfigSource) String() string
Source Files ¶
- apply_job_plan_resolution.go
- cancel_job_request_response.go
- config_source.go
- create_config_source_details.go
- create_job_details.go
- create_job_request_response.go
- create_stack_details.go
- create_stack_request_response.go
- create_zip_upload_config_source_details.go
- delete_stack_request_response.go
- failure_details.go
- get_job_logs_content_request_response.go
- get_job_logs_request_response.go
- get_job_request_response.go
- get_job_tf_config_request_response.go
- get_job_tf_state_request_response.go
- get_stack_request_response.go
- get_stack_tf_config_request_response.go
- job.go
- job_summary.go
- list_jobs_request_response.go
- list_stacks_request_response.go
- log_entry.go
- resourcemanager_client.go
- stack.go
- stack_summary.go
- update_config_source_details.go
- update_job_details.go
- update_job_request_response.go
- update_stack_details.go
- update_stack_request_response.go
- update_zip_upload_config_source_details.go
- zip_upload_config_source.go