// 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/dif"
	"github.com/oracle/oci-go-sdk/v65/example/helpers"
)

func ExampleAddService() {
	// 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 := dif.NewStackClientWithConfigurationProvider(common.DefaultConfigProvider())
	helpers.FatalIfError(err)

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

	req := dif.AddServiceRequest{AddServiceDetails: dif.AddServiceDetails{Ggcs: []dif.GgcsDetail{dif.GgcsDetail{Connections: []dif.GgcsConnectionDetails{dif.GgcsConnectionDetails{ConnectionId: common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-connectionId-Value"),
		ConnectionName: common.String("EXAMPLE-connectionName-Value"),
		DifDependencies: []dif.DifDependencyDetails{dif.DifDependencyDetails{ServiceInstanceId: common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-serviceInstanceId-Value"),
			ServiceType: common.String("EXAMPLE-serviceType-Value")}},
		GgAdminSecretId: common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-ggAdminSecretId-Value")}},
		InstanceId:       common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-instanceId-Value"),
		Ocpu:             common.Int(85),
		OggVersion:       common.String("EXAMPLE-oggVersion-Value"),
		PasswordSecretId: common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-passwordSecretId-Value"),
		PublicSubnetId:   common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-publicSubnetId-Value"),
		SubnetId:         common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-subnetId-Value")}},
		Objectstorage: []dif.ObjectStorageDetail{dif.ObjectStorageDetail{AutoTiering: dif.AutoTieringDisabled,
			InstanceId:       common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-instanceId-Value"),
			ObjectVersioning: dif.ObjectVersioningEnabled,
			StorageTier:      dif.StorageTierStandard}},
		Services:       []dif.ServiceEnum{dif.ServiceObjectstorage},
		StackTemplates: []dif.StackTemplateEnum{dif.StackTemplateAiservices},
		Adb: []dif.AdbDetail{dif.AdbDetail{IsPublic: common.Bool(false),
			ToolsPublicAccess:        common.String("EXAMPLE-toolsPublicAccess-Value"),
			DataStorageSizeInTBs:     common.Int(747),
			DbVersion:                common.String("EXAMPLE-dbVersion-Value"),
			DbWorkload:               dif.DbWorkloadDw,
			Ecpu:                     common.Int(312),
			InstanceId:               common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-instanceId-Value"),
			SubnetId:                 common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-subnetId-Value"),
			AdminPasswordId:          common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-adminPasswordId-Value"),
			IsMtlsConnectionRequired: common.Bool(true)}},
		Dataflow: []dif.DataflowDetail{dif.DataflowDetail{DriverShape: common.String("EXAMPLE-driverShape-Value"),
			DriverShapeConfig: &dif.ShapeConfig{Ocpus: common.Int(358),
				MemoryInGBs: common.Int(146)},
			ExecutorShape:             common.String("EXAMPLE-executorShape-Value"),
			LogBucketInstanceId:       common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-logBucketInstanceId-Value"),
			NumExecutors:              common.Int(712),
			SparkVersion:              common.String("EXAMPLE-sparkVersion-Value"),
			WarehouseBucketInstanceId: common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-warehouseBucketInstanceId-Value"),
			Connections: &dif.DataflowConnections{ConnectionDetails: &dif.DataflowConnectionDetails{DifDependencies: []dif.DifDependencyDetails{dif.DifDependencyDetails{ServiceInstanceId: common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-serviceInstanceId-Value"),
				ServiceType: common.String("EXAMPLE-serviceType-Value")}},
				DomainNames: []string{"EXAMPLE--Value"}},
				SubnetId: common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-subnetId-Value")},
			ExecutorShapeConfig: &dif.ShapeConfig{MemoryInGBs: common.Int(405),
				Ocpus: common.Int(827)},
			InstanceId:        common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-instanceId-Value"),
			PrivateEndpointId: common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-privateEndpointId-Value")}},
		Genai: []dif.GenAiDetail{dif.GenAiDetail{UnitCount: common.Int(331),
			BaseModel:   common.String("EXAMPLE-baseModel-Value"),
			ClusterType: dif.ClusterTypeHosting,
			Endpoints: []dif.EndpointDetails{dif.EndpointDetails{IsContentModerationEnabled: common.Bool(true),
				EndpointName: common.String("EXAMPLE-endpointName-Value")}},
			InstanceId: common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-instanceId-Value"),
			OciRegion:  common.String("EXAMPLE-ociRegion-Value")}}},
		IfMatch:      common.String("EXAMPLE-ifMatch-Value"),
		OpcRequestId: common.String("LB576MWNAD8DDMKF5DI0<unique_ID>"),
		StackId:      common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-stackId-Value")}

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

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