-
Notifications
You must be signed in to change notification settings - Fork 82
/
create_apply_job_operation_details.go
76 lines (62 loc) · 3.55 KB
/
create_apply_job_operation_details.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
// Copyright (c) 2016, 2018, 2023, Oracle and/or its affiliates. All rights reserved.
// This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
// Code generated. DO NOT EDIT.
// Resource Manager API
//
// Use the Resource Manager API to automate deployment and operations for all Oracle Cloud Infrastructure resources.
// Using the infrastructure-as-code (IaC) model, the service is based on Terraform, an open source industry standard that lets DevOps engineers develop and deploy their infrastructure anywhere.
// For more information, see
// the Resource Manager documentation (https://docs.cloud.oracle.com/iaas/Content/ResourceManager/home.htm).
//
package resourcemanager
import (
"encoding/json"
"fmt"
"github.com/oracle/oci-go-sdk/v65/common"
"strings"
)
// CreateApplyJobOperationDetails Job details that are specific to apply operations.
type CreateApplyJobOperationDetails struct {
// Specifies whether or not to upgrade provider versions.
// Within the version constraints of your Terraform configuration, use the latest versions available from the source of Terraform providers.
// For more information about this option, see Dependency Lock File (terraform.io) (https://www.terraform.io/language/files/dependency-lock).
IsProviderUpgradeRequired *bool `mandatory:"false" json:"isProviderUpgradeRequired"`
TerraformAdvancedOptions *TerraformAdvancedOptions `mandatory:"false" json:"terraformAdvancedOptions"`
// The OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a plan job, for use when specifying `FROM_PLAN_JOB_ID` as the `executionPlanStrategy`.
ExecutionPlanJobId *string `mandatory:"false" json:"executionPlanJobId"`
// Specifies the source of the execution plan to apply.
// Use `AUTO_APPROVED` to run the job without an execution plan.
ExecutionPlanStrategy ApplyJobOperationDetailsExecutionPlanStrategyEnum `mandatory:"false" json:"executionPlanStrategy,omitempty"`
}
//GetIsProviderUpgradeRequired returns IsProviderUpgradeRequired
func (m CreateApplyJobOperationDetails) GetIsProviderUpgradeRequired() *bool {
return m.IsProviderUpgradeRequired
}
func (m CreateApplyJobOperationDetails) String() string {
return common.PointerString(m)
}
// ValidateEnumValue returns an error when providing an unsupported enum value
// This function is being called during constructing API request process
// Not recommended for calling this function directly
func (m CreateApplyJobOperationDetails) ValidateEnumValue() (bool, error) {
errMessage := []string{}
if _, ok := GetMappingApplyJobOperationDetailsExecutionPlanStrategyEnum(string(m.ExecutionPlanStrategy)); !ok && m.ExecutionPlanStrategy != "" {
errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for ExecutionPlanStrategy: %s. Supported values are: %s.", m.ExecutionPlanStrategy, strings.Join(GetApplyJobOperationDetailsExecutionPlanStrategyEnumStringValues(), ",")))
}
if len(errMessage) > 0 {
return true, fmt.Errorf(strings.Join(errMessage, "\n"))
}
return false, nil
}
// MarshalJSON marshals to json representation
func (m CreateApplyJobOperationDetails) MarshalJSON() (buff []byte, e error) {
type MarshalTypeCreateApplyJobOperationDetails CreateApplyJobOperationDetails
s := struct {
DiscriminatorParam string `json:"operation"`
MarshalTypeCreateApplyJobOperationDetails
}{
"APPLY",
(MarshalTypeCreateApplyJobOperationDetails)(m),
}
return json.Marshal(&s)
}