// This is an automatically generated code sample.
// To make this code sample work in your Oracle Cloud tenancy,
// please replace the values for any parameters whose current values do not fit
// your use case (such as resource IDs, strings containing ‘EXAMPLE’ or ‘unique_id’, and
// boolean, number, and enum parameters with values not fitting your use case).

package main

import (
	"context"
	"fmt"

	"github.com/oracle/oci-go-sdk/v65/common"
	"github.com/oracle/oci-go-sdk/v65/example/helpers"
	"github.com/oracle/oci-go-sdk/v65/fleetappsmanagement"
)

func ExampleCreateRunbookVersion() {
	// Create a default authentication provider that uses the DEFAULT
	// profile in the configuration file.
	// Refer to <see href="https://docs.cloud.oracle.com/en-us/iaas/Content/API/Concepts/sdkconfig.htm#SDK_and_CLI_Configuration_File>the public documentation</see> on how to prepare a configuration file.
	client, err := fleetappsmanagement.NewFleetAppsManagementRunbooksClientWithConfigurationProvider(common.DefaultConfigProvider())
	helpers.FatalIfError(err)

	// Create a request and dependent object(s).

	req := fleetappsmanagement.CreateRunbookVersionRequest{CreateRunbookVersionDetails: fleetappsmanagement.CreateRunbookVersionDetails{Tasks: []fleetappsmanagement.Task{fleetappsmanagement.Task{OutputVariableMappings: []fleetappsmanagement.OutputVariableMapping{fleetappsmanagement.OutputVariableMapping{Name: common.String("EXAMPLE-name-Value"),
		OutputVariableDetails: &fleetappsmanagement.OutputVariableDetails{OutputVariableName: common.String("EXAMPLE-outputVariableName-Value"),
			StepName: common.String("EXAMPLE-stepName-Value")}}},
		StepName: common.String("EXAMPLE-stepName-Value"),
		StepProperties: &fleetappsmanagement.ComponentProperties{RunOn: fleetappsmanagement.ScheduleInstanceRunOnDetails{Condition: common.String("EXAMPLE-condition-Value")},
			ActionOnFailure: fleetappsmanagement.ComponentPropertiesActionOnFailureRollback,
			NotificationPreferences: &fleetappsmanagement.TaskNotificationPreferences{ShouldNotifyOnPause: common.Bool(false),
				ShouldNotifyOnTaskFailure: common.Bool(false),
				ShouldNotifyOnTaskSuccess: common.Bool(true)},
			PauseDetails: fleetappsmanagement.TimeBasedPauseDetails{DurationInMinutes: common.Int(210)},
			PreCondition: common.String("EXAMPLE-preCondition-Value")},
		TaskRecordDetails: fleetappsmanagement.AssociatedLocalTaskDetails{OsType: fleetappsmanagement.OsTypeGeneric,
			Properties: &fleetappsmanagement.Properties{NumRetries: common.Int(298),
				TimeoutInSeconds: common.Int(403)},
			Description:           common.String("EXAMPLE-description-Value"),
			IsApplySubjectTask:    common.Bool(true),
			IsDiscoveryOutputTask: common.Bool(false),
			Name:                  common.String("EXAMPLE-name-Value"),
			Platform:              common.String("EXAMPLE-platform-Value"),
			ExecutionDetails: fleetappsmanagement.ScriptBasedExecutionDetails{Credentials: []fleetappsmanagement.ConfigAssociationDetails{fleetappsmanagement.ConfigAssociationDetails{DisplayName: common.String("EXAMPLE-displayName-Value"),
				Id: common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-id-Value")}},
				IsExecutableContent: common.Bool(true),
				IsLocked:            common.Bool(true),
				SystemVariables:     []string{"EXAMPLE--Value"},
				Variables: &fleetappsmanagement.TaskVariable{InputVariables: []fleetappsmanagement.InputArgument{fleetappsmanagement.FileInputArgument{Description: common.String("EXAMPLE-description-Value"),
					Name: common.String("EXAMPLE-name-Value")}},
					OutputVariables: []string{"EXAMPLE--Value"}},
				Command: common.String("EXAMPLE-command-Value"),
				Content: fleetappsmanagement.ObjectStorageBucketContentDetails{BucketName: common.String("EXAMPLE-bucketName-Value"),
					Checksum:      common.String("EXAMPLE-checksum-Value"),
					NamespaceName: common.String("EXAMPLE-namespaceName-Value"),
					ObjectName:    common.String("EXAMPLE-objectName-Value")}},
			IsCopyToLibraryEnabled: common.Bool(false)}}},
		DefinedTags: map[string]map[string]interface{}{"EXAMPLE_KEY_O7r9M": map[string]interface{}{"EXAMPLE_KEY_p5k5k": "EXAMPLE--Value"}},
		ExecutionWorkflowDetails: &fleetappsmanagement.ExecutionWorkflowDetails{Workflow: []fleetappsmanagement.WorkflowGroup{fleetappsmanagement.WorkflowGroup{Steps: []fleetappsmanagement.WorkflowComponent{fleetappsmanagement.WorkflowTaskComponent{StepName: common.String("EXAMPLE-stepName-Value")}},
			Type:      fleetappsmanagement.WorkflowGroupTypeRollingResourceGroup,
			GroupName: common.String("EXAMPLE-groupName-Value")}}},
		FreeformTags: map[string]string{"EXAMPLE_KEY_FeVMh": "EXAMPLE_VALUE_QaGU6QjszJXYfc7ugwbx"},
		Groups: []fleetappsmanagement.Group{fleetappsmanagement.Group{Name: common.String("EXAMPLE-name-Value"),
			Properties: &fleetappsmanagement.ComponentProperties{NotificationPreferences: &fleetappsmanagement.TaskNotificationPreferences{ShouldNotifyOnTaskSuccess: common.Bool(true),
				ShouldNotifyOnPause:       common.Bool(false),
				ShouldNotifyOnTaskFailure: common.Bool(false)},
				PauseDetails:    fleetappsmanagement.TimeBasedPauseDetails{DurationInMinutes: common.Int(88)},
				PreCondition:    common.String("EXAMPLE-preCondition-Value"),
				RunOn:           fleetappsmanagement.ScheduleInstanceRunOnDetails{Condition: common.String("EXAMPLE-condition-Value")},
				ActionOnFailure: fleetappsmanagement.ComponentPropertiesActionOnFailureAbort},
			Type: fleetappsmanagement.GroupTypeParallelTaskGroup}},
		RollbackWorkflowDetails: &fleetappsmanagement.RollbackWorkflowDetails{Scope: fleetappsmanagement.RollbackWorkflowDetailsScopeActionGroup,
			Workflow: []fleetappsmanagement.WorkflowGroup{fleetappsmanagement.WorkflowGroup{GroupName: common.String("EXAMPLE-groupName-Value"),
				Steps: []fleetappsmanagement.WorkflowComponent{fleetappsmanagement.WorkflowGroupComponent{GroupName: common.String("EXAMPLE-groupName-Value"),
					Steps: []string{"EXAMPLE--Value"}}},
				Type: fleetappsmanagement.WorkflowGroupTypeRollingResourceGroup}}},
		RunbookId: common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-runbookId-Value")},
		OpcRequestId:  common.String("NODKHHDVBNLEEVLBCJBB<unique_ID>"),
		OpcRetryToken: common.String("EXAMPLE-opcRetryToken-Value")}

	// Send the request using the service client
	resp, err := client.CreateRunbookVersion(context.Background(), req)
	helpers.FatalIfError(err)

	// Retrieve value from the response.
	fmt.Println(resp)
}